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/apiblockdestroy.php | |
parent | da444f8a15043f326aa9a629ba5f0b25bc35b1e5 (diff) |
Harmonise UI message "No such user."
Diffstat (limited to 'actions/apiblockdestroy.php')
-rw-r--r-- | actions/apiblockdestroy.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/apiblockdestroy.php b/actions/apiblockdestroy.php index 16dbf94ca..328f18ab0 100644 --- a/actions/apiblockdestroy.php +++ b/actions/apiblockdestroy.php @@ -93,7 +93,7 @@ class ApiBlockDestroyAction 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; } |