From: Evan Prodromou Date: Mon, 20 Jun 2011 14:14:24 +0000 (-0400) Subject: correct staticGet() declaration X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=a1911dc2c1dd7cf5f3c7b3b0f95de85407ba276e;p=quix0rs-gnu-social.git correct staticGet() declaration --- diff --git a/plugins/Blog/BlogEntry.php b/plugins/Blog/BlogEntry.php index 54940e06e5..32915dc9c7 100644 --- a/plugins/Blog/BlogEntry.php +++ b/plugins/Blog/BlogEntry.php @@ -61,7 +61,7 @@ class BlogEntry extends Managed_DataObject const TYPE = 'http://activitystrea.ms/schema/1.0/blog-entry'; - static function staticGet($k, $v=null) + function staticGet($k, $v=null) { return Managed_DataObject::staticGet('blog_entry', $k, $v); }