X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=actions%2Feditapplication.php;h=c7e5f9052c77fc81271687f72fd09edd34496c18;hb=4d179c6b0ce1b567c3e6f77e1db845c621cd2bf0;hp=00ed3971935ed520bc132c470e832620894e1d06;hpb=8912cdc7a4acaeaea3b2b323efc86333ffd5ef63;p=quix0rs-gnu-social.git diff --git a/actions/editapplication.php b/actions/editapplication.php index 00ed397193..c7e5f9052c 100644 --- a/actions/editapplication.php +++ b/actions/editapplication.php @@ -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();