diff options
Diffstat (limited to 'actions/newmessage.php')
-rw-r--r-- | actions/newmessage.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actions/newmessage.php b/actions/newmessage.php index 095a7d1d3..73307fdfc 100644 --- a/actions/newmessage.php +++ b/actions/newmessage.php @@ -61,7 +61,7 @@ class NewmessageAction extends Action /** * Title of the page * - * Note that this usually doesn't get called unless something went wrong + * Note that this usually does not get called unless something went wrong * * @return string page title */ @@ -113,7 +113,7 @@ class NewmessageAction extends Action $this->other = User::staticGet('id', $this->to); if (!$this->other) { - $this->clientError(_('No such user'), 404); + $this->clientError(_('No such user.'), 404); return false; } |