From 4610377a6670a332ef36c328722943652768eae8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9gis=20Leroy?= Date: Thu, 17 Mar 2005 14:36:06 +0000 Subject: [PATCH] fixing ->setOwner which were always setting empty owner --- phpgwapi/inc/galaxia_workflow/src/API/Instance.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpgwapi/inc/galaxia_workflow/src/API/Instance.php b/phpgwapi/inc/galaxia_workflow/src/API/Instance.php index 24925b1049..52ce9ab820 100644 --- a/phpgwapi/inc/galaxia_workflow/src/API/Instance.php +++ b/phpgwapi/inc/galaxia_workflow/src/API/Instance.php @@ -196,7 +196,7 @@ class Instance extends Base { $this->owner = $user; // save database $query = "update `".GALAXIA_TABLE_PREFIX."instances` set `wf_owner`=? where `wf_instance_id`=?"; - $this->query($query,array($owner,(int)$this->instanceId)); + $this->query($query,array($this->owner,(int)$this->instanceId)); } /*!