]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - actions/userrss.php
Catch a couple of missing XML namespace declarations on API XML output. Missing NS...
[quix0rs-gnu-social.git] / actions / userrss.php
index 77bd316b2d1d3f5a61d95513c6bf8e070a23d4c5..cf7d18ca88c8b9c9867ba4e1e5c90ed58b71c2b0 100644 (file)
@@ -41,9 +41,9 @@ class UserrssAction extends Rss10Action
             return false;
         } else {
             if (!empty($this->tag)) {
-                $this->notices = $this->getTaggedNotices($this->tag, $this->limit);
+                $this->notices = $this->getTaggedNotices();
             } else {
-                $this->notices = $this->getNotices($this->limit);
+                $this->notices = $this->getNotices();
             }
             return true;
         }
@@ -103,7 +103,7 @@ class UserrssAction extends Rss10Action
         $profile = $user->getProfile();
         if (!$profile) {
             common_log_db_error($user, 'SELECT', __FILE__);
-            $this->serverError(_('User without matching profile'));
+            $this->serverError(_('User without matching profile.'));
             return null;
         }
         $avatar = $profile->getAvatar(AVATAR_PROFILE_SIZE);