diff --git a/htdocs/categories/viewcat.php b/htdocs/categories/viewcat.php index ed0593a13d9..62d2d47d979 100644 --- a/htdocs/categories/viewcat.php +++ b/htdocs/categories/viewcat.php @@ -1484,7 +1484,7 @@ if ($type == Categorie::TYPE_ORDER) { if ($permission) { print ""; print $langs->trans("DeleteFromCat"); - print img_picto($langs->trans("DeleteFromCat"), 'unlink', '', false, 0, 0, '', 'paddingleft'); + print img_picto($langs->trans("DeleteFromCat"), 'unlink', '', 0, 0, 0, '', 'paddingleft'); print ""; } print "\n"; diff --git a/htdocs/commande/card.php b/htdocs/commande/card.php index 5c0c6f0dc50..57ccf008ac5 100644 --- a/htdocs/commande/card.php +++ b/htdocs/commande/card.php @@ -2173,7 +2173,7 @@ if ($action == 'create' && $usercancreate) { print ''.$langs->trans("Categories").''; $cate_arbo = $form->select_all_categories(Categorie::TYPE_ORDER, '', 'parent', 64, 0, 1); $arrayselected = GETPOST('categories', 'array'); - print img_picto('', 'category').$form->multiselectarray('categories', $cate_arbo, $arrayselected, '', 0, 'quatrevingtpercent widthcentpercentminusx', 0, 0); + print img_picto('', 'category').$form->multiselectarray('categories', $cate_arbo, $arrayselected, 0, 0, 'quatrevingtpercent widthcentpercentminusx', 0, 0); print ""; } diff --git a/htdocs/core/modules/modCategorie.class.php b/htdocs/core/modules/modCategorie.class.php index f46d818989f..fd9dbce3233 100644 --- a/htdocs/core/modules/modCategorie.class.php +++ b/htdocs/core/modules/modCategorie.class.php @@ -665,12 +665,12 @@ class modCategorie extends DolibarrModules /** * Configure a tag link export * - * @param int $r Index of import tables - * @param int $cat_id Categorie id - * @param string $class Class of the linked object - * @param string $enabled Condition to enable this export - * @param array $permission Permission to export the linked object - * @param array $fields_list Additional fields of the linked object to export + * @param int $r Index of import tables + * @param int $cat_id Categorie id + * @param string $class Class of the linked object + * @param string $enabled Condition to enable this export + * @param array $permission Permission to export the linked object + * @param array> $fields_list Additional fields of the linked object to export * * @return void */