summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Helgeson <erichelgeson@gmail.com>2010-01-16 11:56:07 -0500
committerEric Helgeson <erichelgeson@gmail.com>2010-01-16 11:56:07 -0500
commit5fd8e331f3db997df202b031d46539b748861db5 (patch)
tree9bc0e130b813e6b2b536d61cdcc802dfc2a5ac01
parent1f6bbc189012cb3a1d61be92bbc1d4ec6156afac (diff)
Missed change when refactoring groups. Thanks macno
-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);