diff options
author | Zach Copley <zach@status.net> | 2009-11-30 14:55:02 -0800 |
---|---|---|
committer | Zach Copley <zach@status.net> | 2009-11-30 14:55:02 -0800 |
commit | a36612866e591ff8521ddd3e66f803e768bd6e83 (patch) | |
tree | 6fd031f0f7ac272ccf6b233fb63238c779b43708 | |
parent | 790fa5975c8fac5d46510ab5057ce7e8573bb25c (diff) |
Fix bad function call
-rw-r--r-- | actions/apigroupshow.php | 2 |
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); |