summaryrefslogtreecommitdiff
path: root/actions/apitimelinetag.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/apitimelinetag.php
parentb08d16ef2bf5995ca2feee2d2688e0080eaf5124 (diff)
CamelCase all function names in the API code
Diffstat (limited to 'actions/apitimelinetag.php')
-rw-r--r--actions/apitimelinetag.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/actions/apitimelinetag.php b/actions/apitimelinetag.php
index 53e79e4b9..cf211b173 100644
--- a/actions/apitimelinetag.php
+++ b/actions/apitimelinetag.php
@@ -107,16 +107,16 @@ class ApiTimelineTagAction extends ApiAction
switch($this->format) {
case 'xml':
- $this->show_xml_timeline($this->notices);
+ $this->showXmlTimeline($this->notices);
break;
case 'rss':
- $this->show_rss_timeline($this->notices, $title, $link, $subtitle);
+ $this->showRssTimeline($this->notices, $title, $link, $subtitle);
break;
case 'atom':
$selfuri = common_root_url() .
'api/statusnet/tags/timeline/' .
$this->tag . '.atom';
- $this->show_atom_timeline(
+ $this->showAtomTimeline(
$this->notices,
$title,
$id,
@@ -127,7 +127,7 @@ class ApiTimelineTagAction extends ApiAction
);
break;
case 'json':
- $this->show_json_timeline($this->notices);
+ $this->showJsonTimeline($this->notices);
break;
default:
$this->clientError(_('API method not found!'), $code = 404);