Fix bad param

This commit is contained in:
Laurent Destailleur 2019-08-31 13:26:22 +02:00
parent 26154d3190
commit c81c8543da
2 changed files with 2 additions and 2 deletions

View File

@ -55,7 +55,7 @@ function bomAdminPrepareHead()
//$this->tabs = array(
// 'entity:-tabname:Title:@bom:/bom/mypage.php?id=__ID__'
//); // to remove a tab
complete_head_from_modules($conf, $langs, $object, $head, $h, 'bom');
complete_head_from_modules($conf, $langs, null, $head, $h, 'bom');
return $head;
}

View File

@ -52,7 +52,7 @@ function mymoduleAdminPrepareHead()
//$this->tabs = array(
// 'entity:-tabname:Title:@mymodule:/mymodule/mypage.php?id=__ID__'
//); // to remove a tab
complete_head_from_modules($conf, $langs, $object, $head, $h, 'mymodule');
complete_head_from_modules($conf, $langs, null, $head, $h, 'mymodule');
return $head;
}