瀏覽代碼

Qual: Removed missing variable from function call

Raphaël Doursenaud 11 年之前
父節點
當前提交
f1f550e551
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      htdocs/core/lib/usergroups.lib.php

+ 2 - 2
htdocs/core/lib/usergroups.lib.php

@@ -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;
 }