]> 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 c5aa54a4c289394f42f75390709674ff5059d1f3..b46a65e5ffb4c487f60f14baf1cfc1e7771a15aa 100644 (file)
@@ -4,7 +4,7 @@
  * Copyright (C) 2011, StatusNet, Inc.
  *
  * Show a blog entry
- * 
+ *
  * PHP version 5
  *
  * This program is free software: you can redistribute it and/or modify
@@ -44,17 +44,16 @@ if (!defined('STATUSNET')) {
  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
  * @link      http://status.net/
  */
-
 class ShowblogentryAction extends ShownoticeAction
 {
     protected $id;
     protected $entry;
-    
+
     function getNotice()
     {
         $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.
@@ -81,6 +80,7 @@ class ShowblogentryAction extends ShownoticeAction
     function title()
     {
         // XXX: check for double-encoding
+        // TRANS: Title for a blog entry without a title.
         return (empty($this->entry->title)) ? _m('Untitled') : $this->entry->title;
     }
 }