Fixed problem causing 500 error on notices containing a non-existent group

This commit is contained in:
Ciaran Gultnieks 2010-03-06 00:30:15 +00:00
parent 0c0420f606
commit 8029faadae
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ class Group_alias extends Memcached_DataObject
public $modified; // timestamp() not_null default_CURRENT_TIMESTAMP
/* Static get */
function staticGet($k,$v=NULL) { return DB_DataObject::staticGet('Group_alias',$k,$v); }
function staticGet($k,$v=NULL) { return Memcached_DataObject::staticGet('Group_alias',$k,$v); }
/* the code above is auto generated do not remove the tag below */
###END_AUTOCODE