diff options
author | Zach Copley <zach@controlyourself.ca> | 2009-05-21 05:46:38 +0000 |
---|---|---|
committer | Zach Copley <zach@controlyourself.ca> | 2009-05-21 05:46:38 +0000 |
commit | 07de94ca99c5541b26da9292c4eaa3d80bee3dbe (patch) | |
tree | b539b139198720edbf7859dce59d7187f65f65c5 /scripts | |
parent | 54cd0a2046c417fd072bb4cf79aeda163cf760af (diff) | |
parent | 689dd9ee5f81e3e2472e92b10248fecd39638160 (diff) |
Merge branch '0.8.x' into fbconnect
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/twitterstatusfetcher.php | 3 |
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')); |