summaryrefslogtreecommitdiff
path: root/actions
diff options
context:
space:
mode:
authorZach Copley <zach@status.net>2009-11-30 14:55:02 -0800
committerZach Copley <zach@status.net>2009-11-30 14:55:02 -0800
commita36612866e591ff8521ddd3e66f803e768bd6e83 (patch)
tree6fd031f0f7ac272ccf6b233fb63238c779b43708 /actions
parent790fa5975c8fac5d46510ab5057ce7e8573bb25c (diff)
Fix bad function call
Diffstat (limited to 'actions')
-rw-r--r--actions/apigroupshow.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/apigroupshow.php b/actions/apigroupshow.php
index f9b960747..aae4d249c 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);