From 996704d25870669247fdc246c9f32221278a08cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Doursenaud?= Date: Wed, 23 Apr 2014 15:34:43 +0200 Subject: [PATCH] Qual: Removed missing variable from function call --- htdocs/core/lib/categories.lib.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/htdocs/core/lib/categories.lib.php b/htdocs/core/lib/categories.lib.php index 179ff317294..293644be5dc 100644 --- a/htdocs/core/lib/categories.lib.php +++ b/htdocs/core/lib/categories.lib.php @@ -88,12 +88,12 @@ function categoriesadmin_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,'categoriesadmin'); + complete_head_from_modules($conf,$langs,null,$head,$h,'categoriesadmin'); - complete_head_from_modules($conf,$langs,$object,$head,$h,'categoriesadmin','remove'); + complete_head_from_modules($conf,$langs,null,$head,$h,'categoriesadmin','remove'); return $head; } -?> \ No newline at end of file +?>