summaryrefslogtreecommitdiff
path: root/scripts/fixup_inboxes.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@prodromou.name>2008-11-14 01:51:45 -0500
committerEvan Prodromou <evan@prodromou.name>2008-11-14 01:51:45 -0500
commit11fba88213f0aa13e9e62d2a77cf3ab4fdc4ac8a (patch)
tree8f56a088e1187a65a683798d24152df6554242df /scripts/fixup_inboxes.php
parent31d5b61ca7daf72a847aed50eb65b672b52766f5 (diff)
don't ignore errors on inbox fixup; it messes up replication
darcs-hash:20081114065145-84dde-869571e84951470ab40f5b5191d099d23e68b27b.gz
Diffstat (limited to 'scripts/fixup_inboxes.php')
-rwxr-xr-xscripts/fixup_inboxes.php8
1 files changed, 7 insertions, 1 deletions
diff --git a/scripts/fixup_inboxes.php b/scripts/fixup_inboxes.php
index ce8196dcd..79cca5c7c 100755
--- a/scripts/fixup_inboxes.php
+++ b/scripts/fixup_inboxes.php
@@ -51,7 +51,13 @@ while ($user->fetch()) {
common_log(LOG_INFO, 'Updating inbox for user ' . $user->id);
$user->query('BEGIN');
$inbox = new Notice_inbox();
- $result = $inbox->query('INSERT LOW_PRIORITY IGNORE INTO notice_inbox (user_id, notice_id, created) ' .
+ $inbox->user_id = $user->id;
+ $result = $inbox->delete();
+ if (is_null($result) || $result === false) {
+ common_log_db_error($inbox, 'DELETE', __FILE__);
+ continue;
+ }
+ $result = $inbox->query('INSERT LOW_PRIORITY INTO notice_inbox (user_id, notice_id, created) ' .
'SELECT ' . $user->id . ', notice.id, notice.created ' .
'FROM subscription JOIN notice ON subscription.subscribed = notice.profile_id ' .
'WHERE subscription.subscriber = ' . $user->id . ' ' .