X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=actions%2Fnudge.php;h=5ceaa180636c76e743fa4d587b355d0dba9e7299;hb=d6b28c64830f632bb2f4b6f3c9369b9e56ad217a;hp=b699a31441994e705c1219bf9f6df1a72133eabd;hpb=865b716f0919b6e5133133cd6be53f4143660324;p=quix0rs-gnu-social.git diff --git a/actions/nudge.php b/actions/nudge.php index b699a31441..5ceaa18063 100644 --- a/actions/nudge.php +++ b/actions/nudge.php @@ -29,7 +29,7 @@ * along with this program. If not, see . */ -if (!defined('STATUSNET')) { +if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } @@ -55,35 +55,34 @@ class NudgeAction extends Action * * @return nothing */ - function handle($args) + function handle(array $args=array()) { parent::handle($args); if (!common_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', array('nickname' => $other->nickname))); - return; } // CSRF protection $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; } if (!$other->email || !$other->emailnotifynudge) { - $this->clientError(_('This user doesn\'t allow nudges or hasn\'t confirmed or set his email yet.')); - return; + // TRANS: Client error displayed trying to nudge a user that cannot be nudged. + $this->clientError(_('This user doesn\'t allow nudges or hasn\'t confirmed or set their email address yet.')); } $this->notify($user, $other); @@ -91,12 +90,14 @@ class NudgeAction extends Action if ($this->boolean('ajax')) { $this->startHTML('text/xml;charset=utf-8'); $this->elementStart('head'); + // TRANS: Page title after sending a nudge. $this->element('title', null, _('Nudge sent')); $this->elementEnd('head'); $this->elementStart('body'); + // 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', @@ -124,9 +125,8 @@ class NudgeAction extends Action } } - function isReadOnly($args) + function isReadOnly(array $args=array()) { return true; } } -