diff options
author | Siebrand Mazeland <s.mazeland@xs4all.nl> | 2009-11-08 23:10:44 +0100 |
---|---|---|
committer | Siebrand Mazeland <s.mazeland@xs4all.nl> | 2009-11-08 23:10:44 +0100 |
commit | 221b779e88e51b70a2c3509798154c461203e636 (patch) | |
tree | 42b8e9b5faa2adbf161afe42705b787a71ce12cc /actions/apistatusesupdate.php | |
parent | da444f8a15043f326aa9a629ba5f0b25bc35b1e5 (diff) |
Harmonise UI message "No such user."
Diffstat (limited to 'actions/apistatusesupdate.php')
-rw-r--r-- | actions/apistatusesupdate.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/apistatusesupdate.php b/actions/apistatusesupdate.php index e369fa71e..5c23accca 100644 --- a/actions/apistatusesupdate.php +++ b/actions/apistatusesupdate.php @@ -136,7 +136,7 @@ class ApiStatusesUpdateAction extends ApiAuthAction } if (empty($this->user)) { - $this->clientError(_('No such user!'), 404, $this->format); + $this->clientError(_('No such user.'), 404, $this->format); return; } |