2
0
forked from Wavyzz/dolibarr

Qual: Removed missing variable from function call

This commit is contained in:
Raphaël Doursenaud
2014-04-23 16:14:07 +02:00
parent ca8cf9101c
commit f1f550e551

View File

@@ -179,9 +179,9 @@ function user_admin_prepare_head()
// Entries must be declared in modules descriptor with line
// $this->tabs = array('entity:+tabname:Title:@mymodule:/mymodule/mypage.php?id=__ID__'); to add new tab
// $this->tabs = array('entity:-tabname); to remove a tab
complete_head_from_modules($conf,$langs,$object,$head,$h,'useradmin');
complete_head_from_modules($conf,$langs,null,$head,$h,'useradmin');
complete_head_from_modules($conf,$langs,$object,$head,$h,'useradmin','remove');
complete_head_from_modules($conf,$langs,null,$head,$h,'useradmin','remove');
return $head;
}