From: Michael J. Rubinsky Date: Sun, 9 Jan 2011 20:17:06 +0000 (-0500) Subject: db is a property of _groupOb X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=f7e92dd6b0a8149ce0f56fd5190a84ff8d35dde3;p=horde.git db is a property of _groupOb --- diff --git a/framework/Group/lib/Horde/Group/SqlObject.php b/framework/Group/lib/Horde/Group/SqlObject.php index 95308b3ac..19337977f 100644 --- a/framework/Group/lib/Horde/Group/SqlObject.php +++ b/framework/Group/lib/Horde/Group/SqlObject.php @@ -122,7 +122,7 @@ class Horde_Group_SqlObject extends Horde_Group_DataTreeObject ' VALUES (?, ?)'; foreach ($this->data['users'] as $user) { try { - $this->db->insert($query, array(intval($this->id), $user)); + $this->_groupOb->db->insert($query, array(intval($this->id), $user)); } catch (Horde_Db_Exception $e) { throw new Horde_Group_Exception($e); }