]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Missed change when refactoring groups. Thanks macno
authorEric Helgeson <erichelgeson@gmail.com>
Sat, 16 Jan 2010 16:56:07 +0000 (11:56 -0500)
committerZach Copley <zach@status.net>
Thu, 4 Feb 2010 22:00:46 +0000 (14:00 -0800)
actions/apigroupjoin.php
actions/apigroupleave.php

index 3309d63e7b8b921bdd91cdb2d952917e8b291b88..374cf83df068c77506d025d7c66e3506fff69cf3 100644 (file)
@@ -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);
index 6f8d40527b7ecdae845c504f3fddf6871f5f1c68..9848ece0530cb133937e993e49f98e6eccc20e9d 100644 (file)
@@ -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);