Fix ctor call.
authorJan Schneider <jan@horde.org>
Thu, 27 Jan 2011 09:44:57 +0000 (10:44 +0100)
committerJan Schneider <jan@horde.org>
Thu, 27 Jan 2011 09:44:57 +0000 (10:44 +0100)
turba/lib/Object/Group.php

index 9077442..5c51ab0 100644 (file)
@@ -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';
     }