]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
phpcs cleanup
authorZach Copley <zach@status.net>
Wed, 7 Oct 2009 00:25:10 +0000 (17:25 -0700)
committerZach Copley <zach@status.net>
Wed, 7 Oct 2009 00:25:10 +0000 (17:25 -0700)
actions/apitimelinetag.php

index 1627763798a4c55c8171dbf71ebaf7f27c581dbc..2a23bb72a29296af1af3d0f52a05d956aebce02d 100644 (file)
@@ -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':