diff options
author | Sarven Capadisli <csarven@status.net> | 2009-11-04 09:19:39 +0000 |
---|---|---|
committer | Sarven Capadisli <csarven@status.net> | 2009-11-04 09:19:39 +0000 |
commit | cc0a6dce36f2d5b1ffe664c24fef8864b0065602 (patch) | |
tree | 59fa1f3ca7a3b8cc58bd6d7ffecf6e1e2c912062 | |
parent | df1ee6867e9774374b01784eb671bd16e6c58984 (diff) |
Sync RealtimePlugin with 0.9.x
-rw-r--r-- | plugins/Realtime/RealtimePlugin.php | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/plugins/Realtime/RealtimePlugin.php b/plugins/Realtime/RealtimePlugin.php index 0f0d0f9f4..0c7c1240c 100644 --- a/plugins/Realtime/RealtimePlugin.php +++ b/plugins/Realtime/RealtimePlugin.php @@ -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']); |