From b28e11a7e3ae071b127694c498f08cc1fddfa4b0 Mon Sep 17 00:00:00 2001 From: root Date: Tue, 20 Jan 2009 03:06:34 +0000 Subject: [PATCH] Some production requirements for making inbox_users.php work --- scripts/inbox_users.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/inbox_users.php b/scripts/inbox_users.php index 7b029e1425..7d14f0efe6 100755 --- a/scripts/inbox_users.php +++ b/scripts/inbox_users.php @@ -82,6 +82,7 @@ foreach ($ids as $id) { 'FROM notice_inbox ' . 'WHERE user_id = ' . $user->id . ' ' . 'AND notice_id = notice.id) ' . + 'ORDER BY notice.created DESC ' . 'LIMIT 0, 1000'); if (is_null($result) || $result === false) { @@ -105,5 +106,6 @@ foreach ($ids as $id) { if ($cache) { $cache->delete(common_cache_key('user:notices_with_friends:' . $user->id)); + $cache->delete(common_cache_key('user:notices_with_friends:' . $user->id . ';last')); } }