summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorZach Copley <zach@controlyourself.ca>2009-05-21 05:46:38 +0000
committerZach Copley <zach@controlyourself.ca>2009-05-21 05:46:38 +0000
commit07de94ca99c5541b26da9292c4eaa3d80bee3dbe (patch)
treeb539b139198720edbf7859dce59d7187f65f65c5 /scripts
parent54cd0a2046c417fd072bb4cf79aeda163cf760af (diff)
parent689dd9ee5f81e3e2472e92b10248fecd39638160 (diff)
Merge branch '0.8.x' into fbconnect
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/twitterstatusfetcher.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/twitterstatusfetcher.php b/scripts/twitterstatusfetcher.php
index 9dfadc760..a61ce1b0d 100755
--- a/scripts/twitterstatusfetcher.php
+++ b/scripts/twitterstatusfetcher.php
@@ -214,7 +214,8 @@ class TwitterStatusFetcher extends Daemon
return;
}
- foreach ($timeline as $status) {
+ // Reverse to preserve order
+ foreach (array_reverse($timeline) as $status) {
// Hacktastic: filter out stuff coming from this Laconica
$source = mb_strtolower(common_config('integration', 'source'));