Moved back to using lib twitterapi instead of api for 0.8.x

This commit is contained in:
Sarven Capadisli 2009-11-08 22:55:53 +00:00
parent 6f7e3053ba
commit 5c5a905eb9
1 changed files with 4 additions and 4 deletions

View File

@ -240,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 ApiAction method. Don't do this unless you're me!
// the TwitterApiAction method. Don't do this unless you're me!
require_once(INSTALLDIR.'/lib/api.php');
require_once(INSTALLDIR.'/lib/twitterapi.php');
$act = new ApiAction('/dev/null');
$act = new TwitterApiAction('/dev/null');
$arr = $act->twitterStatusArray($notice, true);
$arr = $act->twitter_status_array($notice, true);
$arr['url'] = $notice->bestUrl();
$arr['html'] = htmlspecialchars($notice->rendered);
$arr['source'] = htmlspecialchars($arr['source']);