From f1757c5261b88481160a0b5607c71f776a23e876 Mon Sep 17 00:00:00 2001 From: Jan Schneider Date: Thu, 27 Jan 2011 10:44:57 +0100 Subject: [PATCH] Fix ctor call. --- turba/lib/Object/Group.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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'; } -- 2.11.0