2
0
forked from Wavyzz/dolibarr

Merge pull request #12523 from oscim/patch-11

Put $object in complete_head_from_modules
This commit is contained in:
Laurent Destailleur
2019-11-28 12:20:16 +01:00
committed by GitHub

View File

@@ -702,9 +702,9 @@ function modulehelp_prepare_head($object)
$h++;
}
complete_head_from_modules($conf, $langs, null, $head, $h, 'modulehelp_admin');
complete_head_from_modules($conf, $langs, $object, $head, $h, 'modulehelp_admin');
complete_head_from_modules($conf, $langs, null, $head, $h, 'modulehelp_admin', 'remove');
complete_head_from_modules($conf, $langs, $object, $head, $h, 'modulehelp_admin', 'remove');
return $head;