X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=actions%2Fnewmessage.php;h=dd7c5357ba0f2980f3b13de4a56b1be217271bd3;hb=a2e4a1803c2fef25ffc94d306781cec4ae18a5b5;hp=8a03aebfac4aa13c2ff1a38babe481b1006dbe74;hpb=1256181d364f873c3e76a704349aa7c20e32237b;p=quix0rs-gnu-social.git diff --git a/actions/newmessage.php b/actions/newmessage.php index 8a03aebfac..dd7c5357ba 100644 --- a/actions/newmessage.php +++ b/actions/newmessage.php @@ -85,7 +85,7 @@ class NewmessageAction extends Action parent::handle($args); if (!common_logged_in()) { - // TRANS: Client error displayed trying to create a new direct message 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.'), 403); } else if ($_SERVER['REQUEST_METHOD'] == 'POST') { $this->saveNewMessage(); @@ -137,6 +137,7 @@ class NewmessageAction 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->showForm(_('There was a problem with your session token. ' . 'Try again, please.')); return;