summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/fixup_inboxes.php7
1 files changed, 7 insertions, 0 deletions
diff --git a/scripts/fixup_inboxes.php b/scripts/fixup_inboxes.php
index c3ead16bf..ce8196dcd 100755
--- a/scripts/fixup_inboxes.php
+++ b/scripts/fixup_inboxes.php
@@ -34,9 +34,16 @@ define('LACONICA', true);
require_once(INSTALLDIR . '/lib/common.php');
+$start_at = ($argc > 1) ? $argv[1] : NULL;
+
common_log(LOG_INFO, 'Updating user inboxes.');
$user = new User();
+
+if ($start_at) {
+ $user->whereAdd('id >= ' . $start_at);
+}
+
$cnt = $user->find();
$cache = common_memcache();