diff options
Diffstat (limited to 'actions/apigroupleave.php')
-rw-r--r-- | actions/apigroupleave.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actions/apigroupleave.php b/actions/apigroupleave.php index 7321ff5d2..9848ece05 100644 --- a/actions/apigroupleave.php +++ b/actions/apigroupleave.php @@ -131,14 +131,14 @@ class ApiGroupLeaveAction extends ApiAuthAction switch($this->format) { case 'xml': - $this->show_single_xml_group($this->group); + $this->showSingleXmlGroup($this->group); break; case 'json': $this->showSingleJsonGroup($this->group); break; default: $this->clientError( - _('API method not found!'), + _('API method not found.'), 404, $this->format ); |