summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCiaran Gultnieks <ciaran@ciarang.com>2010-03-06 00:30:15 +0000
committerCiaran Gultnieks <ciaran@ciarang.com>2010-03-06 00:30:15 +0000
commit8029faadaecaa2b3b253fa7086be0a25bece0ce5 (patch)
tree9103cd53345b7aa780ce634a000b391ef59a7ae2
parent0c0420f606bd9caaf61dc4e307bbb5b8465480e0 (diff)
Fixed problem causing 500 error on notices containing a non-existent group
-rw-r--r--classes/Group_alias.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/Group_alias.php b/classes/Group_alias.php
index be3d0a6c6..c5a1895a1 100644
--- a/classes/Group_alias.php
+++ b/classes/Group_alias.php
@@ -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