]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Sync RealtimePlugin with 0.9.x
authorSarven Capadisli <csarven@status.net>
Wed, 4 Nov 2009 09:19:39 +0000 (09:19 +0000)
committerSarven Capadisli <csarven@status.net>
Wed, 4 Nov 2009 09:19:39 +0000 (09:19 +0000)
plugins/Realtime/RealtimePlugin.php

index 0f0d0f9f42309b134298220d3fc1d148e3ae2ed7..0c7c1240c3f7bb24031e7db82cdc33c7acbb8c04 100644 (file)
@@ -230,6 +230,7 @@ class RealtimePlugin extends Plugin
         }
 
         $action->showContentBlock();
+        $action->showScripts();
         $action->elementEnd('body');
         return false; // No default processing
     }
@@ -239,13 +240,13 @@ class RealtimePlugin extends Plugin
         // FIXME: this code should be abstracted to a neutral third
         // party, like Notice::asJson(). I'm not sure of the ethics
         // of refactoring from within a plugin, so I'm just abusing
-        // the TwitterApiAction method. Don't do this unless you're me!
+        // the ApiAction method. Don't do this unless you're me!
 
-        require_once(INSTALLDIR.'/lib/twitterapi.php');
+        require_once(INSTALLDIR.'/lib/api.php');
 
-        $act = new TwitterApiAction('/dev/null');
+        $act = new ApiAction('/dev/null');
 
-        $arr = $act->twitter_status_array($notice, true);
+        $arr = $act->twitterStatusArray($notice, true);
         $arr['url'] = $notice->bestUrl();
         $arr['html'] = htmlspecialchars($notice->rendered);
         $arr['source'] = htmlspecialchars($arr['source']);