]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - actions/userrss.php
inviter URL corrected
[quix0rs-gnu-social.git] / actions / userrss.php
index ba9f64f8ac70fee482ba5f0d6fcf9ab0d4434fb2..b60cc5e0c7100982f0f37f518fccecf29777d513 100644 (file)
@@ -37,6 +37,7 @@ class UserrssAction extends Rss10Action
         $this->tag  = $this->trimmed('tag');
 
         if (!$this->user) {
+            // TRANS: Client error displayed when user not found for an action.
             $this->clientError(_('No such user.'));
             return false;
         } else {
@@ -105,6 +106,7 @@ class UserrssAction extends Rss10Action
         $profile = $user->getProfile();
         if (!$profile) {
             common_log_db_error($user, 'SELECT', __FILE__);
+            // TRANS: Server error displayed in user RSS when user does not have a matching profile.
             $this->serverError(_('User without matching profile.'));
             return null;
         }