summaryrefslogtreecommitdiff
path: root/actions/apigroupleave.php
diff options
context:
space:
mode:
authorEric Helgeson <erichelgeson@gmail.com>2009-11-16 14:59:32 -0500
committerEric Helgeson <erichelgeson@gmail.com>2009-11-16 15:00:36 -0500
commite14c88f6c52fddeeb26c71f13e93db7a8fabdd3b (patch)
tree3c6a30a1aaa779d4419aacaf88d57ac4dd291cfb /actions/apigroupleave.php
parentb7a08fdacc91c783b1e99f5dda2f3ce31ec8a6ee (diff)
Consistant error for groups that dont exist in API
Diffstat (limited to 'actions/apigroupleave.php')
-rw-r--r--actions/apigroupleave.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/apigroupleave.php b/actions/apigroupleave.php
index 8665ea1aa..514a3a557 100644
--- a/actions/apigroupleave.php
+++ b/actions/apigroupleave.php
@@ -101,7 +101,7 @@ class ApiGroupLeaveAction extends ApiAuthAction
}
if (empty($this->group)) {
- $this->clientError('Group not found!', 404, $this->format);
+ $this->clientError(_('Group not found!'), 404, $this->format);
return false;
}