diff options
author | Zach Copley <zach@status.net> | 2009-10-06 17:25:10 -0700 |
---|---|---|
committer | Zach Copley <zach@status.net> | 2009-10-06 17:25:10 -0700 |
commit | 85af1c92adef021a91ed3618b748435248bf1023 (patch) | |
tree | 1c2b78f05768b1a7c1cce79ded6cc82d36328a44 | |
parent | 8d284ca82c1e33a102ef4cb7aa150dd54d876ec7 (diff) |
phpcs cleanup
-rw-r--r-- | actions/apitimelinetag.php | 24 |
1 files changed, 17 insertions, 7 deletions
diff --git a/actions/apitimelinetag.php b/actions/apitimelinetag.php index 162776379..2a23bb72a 100644 --- a/actions/apitimelinetag.php +++ b/actions/apitimelinetag.php @@ -97,10 +97,15 @@ class ApiTimelineTagAction extends TwitterapiAction { $sitename = common_config('site', 'name'); $title = sprintf(_("Notices tagged with %s"), $this->tag); - $link = common_local_url('tag', - array('tag' => $this->tag)); - $subtitle = sprintf(_('Updates tagged with %1$s on %2$s!'), - $this->tag, $sitename); + $link = common_local_url( + 'tag', + array('tag' => $this->tag) + ); + $subtitle = sprintf( + _('Updates tagged with %1$s on %2$s!'), + $this->tag, + $sitename + ); $taguribase = common_config('integration', 'taguri'); $id = "tag:$taguribase:TagTimeline:".$tag; @@ -115,9 +120,14 @@ class ApiTimelineTagAction extends TwitterapiAction $selfuri = common_root_url() . 'api/statusnet/tags/timeline/' . $this->tag . '.atom'; - $this->show_atom_timeline( - $this->notices, $title, $id, $link, - $subtitle, null, $selfuri + $this->show_atom_timeline( + $this->notices, + $title, + $id, + $link, + $subtitle, + null, + $selfuri ); break; case 'json': |