make Group_block use caching staticGet()

This commit is contained in:
Evan Prodromou 2011-04-06 22:49:09 -04:00
parent 2a124c1397
commit b8fdf6636f
1 changed files with 1 additions and 1 deletions

View File

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