X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=actions%2Fnudge.php;h=0ca3753dc7bc03427138f3163322f42bf93684f8;hb=29d0871e5a5b2561387bcad40ef4644ee1c2be08;hp=61874c75058f90077cf06c7277e80deb27d42c9e;hpb=27ef3b1d905cdf8f47b47293a757624dda88fdc7;p=quix0rs-gnu-social.git diff --git a/actions/nudge.php b/actions/nudge.php index 61874c7505..0ca3753dc7 100644 --- a/actions/nudge.php +++ b/actions/nudge.php @@ -60,13 +60,13 @@ class NudgeAction extends Action parent::handle($args); if (!common_logged_in()) { - // TRANS: Client error displayed trying to nudge a user without being logged in. + // TRANS: Error message displayed when trying to perform an action that requires a logged in user. $this->clientError(_('Not logged in.')); return; } $user = common_current_user(); - $other = User::staticGet('nickname', $this->arg('nickname')); + $other = User::getKV('nickname', $this->arg('nickname')); if ($_SERVER['REQUEST_METHOD'] != 'POST') { common_redirect(common_local_url('showstream', @@ -78,6 +78,7 @@ class NudgeAction 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; } @@ -100,7 +101,7 @@ class NudgeAction extends Action // TRANS: Confirmation text after sending a nudge. $this->element('p', array('id' => 'nudge_response'), _('Nudge sent!')); $this->elementEnd('body'); - $this->elementEnd('html'); + $this->endHTML(); } else { // display a confirmation to the user common_redirect(common_local_url('showstream',