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/apiblockcreate.php | |
parent | da444f8a15043f326aa9a629ba5f0b25bc35b1e5 (diff) |
Harmonise UI message "No such user."
Diffstat (limited to 'actions/apiblockcreate.php')
-rw-r--r-- | actions/apiblockcreate.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/apiblockcreate.php b/actions/apiblockcreate.php index 1cab2df5d..4f941f6c3 100644 --- a/actions/apiblockcreate.php +++ b/actions/apiblockcreate.php @@ -94,7 +94,7 @@ class ApiBlockCreateAction extends ApiAuthAction } if (empty($this->user) || empty($this->other)) { - $this->clientError(_('No such user!'), 404, $this->format); + $this->clientError(_('No such user.'), 404, $this->format); return; } |