summaryrefslogtreecommitdiff
path: root/actions/apigrouplist.php
diff options
context:
space:
mode:
authorZach Copley <zach@status.net>2009-10-09 17:53:35 -0700
committerZach Copley <zach@status.net>2009-10-09 17:53:35 -0700
commit061af8fa06ccb98f667d1ee670da2dbb179d8b0e (patch)
tree2a7ac2a05af3782d012d6e4b4fe8905a250de993 /actions/apigrouplist.php
parentb08d16ef2bf5995ca2feee2d2688e0080eaf5124 (diff)
CamelCase all function names in the API code
Diffstat (limited to 'actions/apigrouplist.php')
-rw-r--r--actions/apigrouplist.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/actions/apigrouplist.php b/actions/apigrouplist.php
index 7a5aab72e..1fc31831a 100644
--- a/actions/apigrouplist.php
+++ b/actions/apigrouplist.php
@@ -101,15 +101,15 @@ class ApiGroupListAction extends ApiBareAuthAction
switch($this->format) {
case 'xml':
- $this->show_xml_groups($this->groups);
+ $this->showXmlGroups($this->groups);
break;
case 'rss':
- $this->show_rss_groups($this->groups, $title, $link, $subtitle);
+ $this->showRssGroups($this->groups, $title, $link, $subtitle);
break;
case 'atom':
$selfuri = common_root_url() . 'api/statusnet/groups/list/' .
$this->user->id . '.atom';
- $this->show_atom_groups(
+ $this->showAtomGroups(
$this->groups,
$title,
$id,
@@ -119,7 +119,7 @@ class ApiGroupListAction extends ApiBareAuthAction
);
break;
case 'json':
- $this->show_json_groups($this->groups);
+ $this->showJsonGroups($this->groups);
break;
default:
$this->clientError(