]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - lib/atomlistnoticefeed.php
Introduced isCurrentProfileInScope() which shall check if current profile is
[quix0rs-gnu-social.git] / lib / atomlistnoticefeed.php
index ee4f01cad403604ecff866b4ebea9eb707b0e08d..f4765d44099b5ac70e88a316b45667abfea2a6ad 100644 (file)
@@ -59,7 +59,7 @@ class AtomListNoticeFeed extends AtomNoticeFeed
     function __construct($list, $cur = null, $indent = true) {
         parent::__construct($cur, $indent);
         $this->list = $list;
-        $this->tagger = Profile::staticGet('id', $list->tagger);
+        $this->tagger = Profile::getKV('id', $list->tagger);
 
         // TRANS: Title in atom list notice feed. %1$s is a list name, %2$s is a tagger's nickname.
         $title = sprintf(_('Timeline for people in list %1$s by %2$s'), $list->tag, $this->tagger->nickname);
@@ -88,11 +88,9 @@ class AtomListNoticeFeed extends AtomNoticeFeed
         $this->setId($self);
         $this->setSelfLink($self);
 
-        // FIXME: Stop using activity:subject?
         $ao = ActivityObject::fromPeopletag($this->list);
 
-        $this->addAuthorRaw($ao->asString('author').
-                            $ao->asString('activity:subject'));
+        $this->addAuthorRaw($ao->asString('author'));
 
         $this->addLink($this->list->getUri());
     }