]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - actions/editapplication.php
AtomPub should work now, at least for post/note
[quix0rs-gnu-social.git] / actions / editapplication.php
index 00ed3971935ed520bc132c470e832620894e1d06..c7e5f9052c77fc81271687f72fd09edd34496c18 100644 (file)
@@ -64,7 +64,6 @@ class EditApplicationAction extends Action
         if (!common_logged_in()) {
             // TRANS: Client error displayed trying to edit an application while not logged in.
             $this->clientError(_('You must be logged in to edit an application.'));
-            return false;
         }
 
         $id = (int)$this->arg('id');
@@ -81,7 +80,6 @@ class EditApplicationAction extends Action
         if (!$this->app) {
             // TRANS: Client error displayed trying to edit an application that does not exist.
             $this->clientError(_('No such application.'));
-            return false;
         }
 
         return true;
@@ -130,7 +128,6 @@ class EditApplicationAction extends Action
         if (!$token || $token != common_session_token()) {
             // TRANS: Client error displayed when the session token does not match or is not given.
             $this->clientError(_('There was a problem with your session token.'));
-            return;
         }
 
         $cur = common_current_user();