From: Evan Prodromou Date: Tue, 20 Jan 2009 02:37:31 +0000 (-0500) Subject: Change inboxes to have 1000 items rather than last full month X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=d1cbd756366580962e58bcc8216dd88fe0b5ef2f;p=quix0rs-gnu-social.git Change inboxes to have 1000 items rather than last full month --- diff --git a/scripts/inbox_users.php b/scripts/inbox_users.php index 0543abb2a3..7b029e1425 100755 --- a/scripts/inbox_users.php +++ b/scripts/inbox_users.php @@ -78,11 +78,11 @@ foreach ($ids as $id) { 'FROM subscription JOIN notice ON subscription.subscribed = notice.profile_id ' . 'WHERE subscription.subscriber = ' . $user->id . ' ' . 'AND notice.created >= subscription.created ' . - 'AND now() - notice.created < ' . (7 * 24 * 3600) . ' ' . 'AND NOT EXISTS (SELECT user_id, notice_id ' . 'FROM notice_inbox ' . 'WHERE user_id = ' . $user->id . ' ' . - 'AND notice_id = notice.id)'); + 'AND notice_id = notice.id) ' . + 'LIMIT 0, 1000'); if (is_null($result) || $result === false) { common_log_db_error($inbox, 'INSERT', __FILE__);