]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - plugins/Blog/showblogentry.php
The overloaded DB_DataObject function staticGet is now called getKV
[quix0rs-gnu-social.git] / plugins / Blog / showblogentry.php
index 288527b42a19e71567175649a664c81b7aea84e0..b46a65e5ffb4c487f60f14baf1cfc1e7771a15aa 100644 (file)
@@ -53,7 +53,7 @@ class ShowblogentryAction extends ShownoticeAction
     {
         $this->id = $this->trimmed('id');
 
-        $this->entry = Blog_entry::staticGet('id', $this->id);
+        $this->entry = Blog_entry::getKV('id', $this->id);
 
         if (empty($this->entry)) {
             // TRANS: Client exception thrown when referring to a non-existing blog entry.