From a36612866e591ff8521ddd3e66f803e768bd6e83 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Mon, 30 Nov 2009 14:55:02 -0800 Subject: [PATCH] Fix bad function call --- actions/apigroupshow.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/apigroupshow.php b/actions/apigroupshow.php index f9b960747b..aae4d249c3 100644 --- a/actions/apigroupshow.php +++ b/actions/apigroupshow.php @@ -96,7 +96,7 @@ class ApiGroupShowAction extends ApiPrivateAuthAction switch($this->format) { case 'xml': - $this->show_single_xml_group($this->group); + $this->showSingleXmlGroup($this->group); break; case 'json': $this->showSingleJsonGroup($this->group);