]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - plugins/SearchSub/actions/searchsub.php
Cosmetic changes to common_redirect, clientError, serverError
[quix0rs-gnu-social.git] / plugins / SearchSub / actions / searchsub.php
index dcd072e8f85922432b93ab6bc95c0750508e9653..cf9e5e5e949f3de1c4f2ee8ca499e6f026e4c5da 100644 (file)
@@ -76,7 +76,6 @@ class SearchsubAction extends Action
             // TRANS: Client error displayed trying to perform any request method other than POST.
             // TRANS: Do not translate POST.
             $this->clientError(_m('This action only accepts POST requests.'));
-            return false;
         }
 
         // CSRF protection
@@ -87,7 +86,6 @@ class SearchsubAction extends Action
             // TRANS: Client error displayed when the session token is not okay.
             $this->clientError(_m('There was a problem with your session token.'.
                                  ' Try again, please.'));
-            return false;
         }
 
         // Only for logged-in users
@@ -97,7 +95,6 @@ class SearchsubAction extends Action
         if (empty($this->user)) {
             // TRANS: Error message displayed when trying to perform an action that requires a logged in user.
             $this->clientError(_m('Not logged in.'));
-            return false;
         }
 
         // Profile to subscribe to
@@ -107,7 +104,6 @@ class SearchsubAction extends Action
         if (empty($this->search)) {
             // TRANS: Client error displayed trying to subscribe to a non-existing profile.
             $this->clientError(_m('No such profile.'));
-            return false;
         }
 
         return true;