Some production requirements for making inbox_users.php work

This commit is contained in:
root 2009-01-20 03:06:34 +00:00
parent d1cbd75636
commit b28e11a7e3
1 changed files with 2 additions and 0 deletions

View File

@ -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'));
}
}