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