From 772acd6bf91af654fab49c750fc16f39410dcebc Mon Sep 17 00:00:00 2001
From: Florian HENRY <florian.henry@open-concept.pro>
Date: Mon, 1 Sep 2014 11:49:44 +0200
Subject: [PATCH] Fix missing $user in create method

---
 htdocs/categories/fiche.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/htdocs/categories/fiche.php b/htdocs/categories/fiche.php
index aca14acce2b..a2f9dc54df2 100644
--- a/htdocs/categories/fiche.php
+++ b/htdocs/categories/fiche.php
@@ -138,7 +138,7 @@ if ($action == 'add' && $user->rights->categorie->creer)
 	// Create category in database
 	if (! $error)
 	{
-		$result = $object->create();
+		$result = $object->create($user);
 		if ($result > 0)
 		{
 			$action = 'confirmed';
-- 
GitLab