X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=classes%2FGroup_inbox.php;h=2a0787e387dc8ea087060dfc447cf661121d0e74;hb=8e06b932af93b8fbd66610c948bdde4fafd4f300;hp=523506ec5bdaa31ff6c1dc579280737f8f89bd0a;hpb=30dadb1ad548a739b937a586b5ede90646597110;p=quix0rs-gnu-social.git diff --git a/classes/Group_inbox.php b/classes/Group_inbox.php old mode 100755 new mode 100644 index 523506ec5b..2a0787e387 --- a/classes/Group_inbox.php +++ b/classes/Group_inbox.php @@ -2,7 +2,6 @@ /** * Table Definition for group_inbox */ -require_once 'classes/Memcached_DataObject.php'; class Group_inbox extends Memcached_DataObject { @@ -15,8 +14,14 @@ class Group_inbox extends Memcached_DataObject public $created; // datetime() not_null /* Static get */ + function staticGet($k,$v=NULL) { return Memcached_DataObject::staticGet('Group_inbox',$k,$v); } /* the code above is auto generated do not remove the tag below */ ###END_AUTOCODE + + function pkeyGet($kv) + { + return Memcached_DataObject::pkeyGet('Group_inbox', $kv); + } }