summaryrefslogtreecommitdiff
path: root/actions
diff options
context:
space:
mode:
authorEric Helgeson <erichelgeson@gmail.com>2010-01-16 11:56:07 -0500
committerZach Copley <zach@status.net>2010-02-04 14:00:06 -0800
commit37f3a3d558ba55a085c9ee5427948b572c197bc3 (patch)
treeb6389734bd07d78092c96c63ac4bb0d177674884 /actions
parent239b88025ef1368bb871871ee903d6b078493f76 (diff)
Missed change when refactoring groups. Thanks macno
Diffstat (limited to 'actions')
-rw-r--r--actions/apigroupjoin.php2
-rw-r--r--actions/apigroupleave.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/actions/apigroupjoin.php b/actions/apigroupjoin.php
index 3309d63e7..374cf83df 100644
--- a/actions/apigroupjoin.php
+++ b/actions/apigroupjoin.php
@@ -145,7 +145,7 @@ class ApiGroupJoinAction 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);
diff --git a/actions/apigroupleave.php b/actions/apigroupleave.php
index 6f8d40527..9848ece05 100644
--- a/actions/apigroupleave.php
+++ b/actions/apigroupleave.php
@@ -131,7 +131,7 @@ 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);