From: Jan Schneider Date: Thu, 27 Jan 2011 09:44:57 +0000 (+0100) Subject: Fix ctor call. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=f1757c5261b88481160a0b5607c71f776a23e876;p=horde.git Fix ctor call. --- diff --git a/turba/lib/Object/Group.php b/turba/lib/Object/Group.php index 9077442c5..5c51ab060 100644 --- a/turba/lib/Object/Group.php +++ b/turba/lib/Object/Group.php @@ -18,7 +18,7 @@ class Turba_Object_Group extends Turba_Object */ public function __construct(Turba_Driver $driver, array $attributes = array()) { - parent::Turba_Object($driver, $attributes); + parent::__construct($driver, $attributes); $this->attributes['__type'] = 'Group'; }