X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=actions%2Feditapplication.php;h=95ed98ad90ddf57e74cfa40eabbb9af0f97f2c38;hb=d6b28c64830f632bb2f4b6f3c9369b9e56ad217a;hp=00ed3971935ed520bc132c470e832620894e1d06;hpb=8912cdc7a4acaeaea3b2b323efc86333ffd5ef63;p=quix0rs-gnu-social.git diff --git a/actions/editapplication.php b/actions/editapplication.php index 00ed397193..95ed98ad90 100644 --- a/actions/editapplication.php +++ b/actions/editapplication.php @@ -57,14 +57,13 @@ class EditApplicationAction extends Action /** * Prepare to run */ - function prepare($args) + function prepare(array $args=array()) { parent::prepare($args); 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; @@ -96,7 +94,7 @@ class EditApplicationAction extends Action * * @return void */ - function handle($args) + function handle(array $args=array()) { parent::handle($args); @@ -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();