X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=actions%2Fpluginenable.php;h=d48cef018368bd8c68f20967976419a10fcf9b11;hb=33e2f5b449d477e55bda7029f9e826d889e41eb5;hp=0f2b4ba6702201f8c39de493d0ba465529aa7f1c;hpb=7cf12f093ed48849ec901038b4cfd44595343c06;p=quix0rs-gnu-social.git diff --git a/actions/pluginenable.php b/actions/pluginenable.php index 0f2b4ba670..d48cef0183 100644 --- a/actions/pluginenable.php +++ b/actions/pluginenable.php @@ -84,6 +84,7 @@ class PluginEnableAction extends Action $token = $this->trimmed('token'); 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.'. ' Try again, please.')); return false; @@ -94,7 +95,7 @@ class PluginEnableAction extends Action $this->user = common_current_user(); if (empty($this->user)) { - // TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. + // TRANS: Error message displayed when trying to perform an action that requires a logged in user. $this->clientError(_('Not logged in.')); return false; } @@ -140,7 +141,7 @@ class PluginEnableAction extends Action $form = $this->successNextForm(); $form->show(); $this->elementEnd('body'); - $this->elementEnd('html'); + $this->endHTML(); } else { $url = common_local_url('pluginsadminpanel'); common_redirect($url, 303);