Browse Source

FIX: Missing parameter declaration

Raphaël Doursenaud 10 years ago
parent
commit
4c7ae3d14b
1 changed files with 3 additions and 2 deletions
  1. 3 2
      htdocs/core/lib/accounting.lib.php

+ 3 - 2
htdocs/core/lib/accounting.lib.php

@@ -25,10 +25,11 @@
 
 /**
  *	Prepare array with list of admin tabs
+ *	@param	Object	$object		Accounting account
  *
  *	@return	array				Array of tabs to show
  */
-function admin_accounting_prepare_head()
+function admin_accounting_prepare_head($object)
 {
 	global $langs, $conf;
 	
@@ -189,4 +190,4 @@ function length_exportsage($txt, $len, $end)
 		}
 	}
 	return $res;
-}
+}