2
0
forked from Wavyzz/dolibarr

Fix: Can upload files on services.

This commit is contained in:
Laurent Destailleur
2014-08-26 23:45:02 +02:00
parent 21ff810952
commit 12c6752971
2 changed files with 5 additions and 1 deletions

View File

@@ -2,6 +2,10 @@
English Dolibarr ChangeLog
--------------------------------------------------------------
***** ChangeLog for 3.6.1 compared to 3.6.* *****
For users:
- Fix: Can upload files on services.
***** ChangeLog for 3.6 compared to 3.5.* *****
For users:
- New: Update ckeditor to version 4.

View File

@@ -141,7 +141,7 @@ if ($object->id)
print '</div>';
$modulepart = 'produit';
$permission = $user->rights->produit->creer;
$permission = (($object->type == 0 && $user->rights->produit->creer) || ($object->type == 1 && $user->rights->service->creer));
$param = '&id=' . $object->id;
include_once DOL_DOCUMENT_ROOT . '/core/tpl/document_actions_post_headers.tpl.php';
}