From 10383a3211d0b0864a9719c9c3468616447b5c8c Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 14 Nov 2008 09:40:14 -0500 Subject: [PATCH] add start_at argument for notice rendering fixer darcs-hash:20081114144014-84dde-b75b44b8bb485c4122655e38b8201736fb3f64ed.gz --- scripts/fixup_notices_rendered.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scripts/fixup_notices_rendered.php b/scripts/fixup_notices_rendered.php index 7b29f0d235..c6c925729e 100755 --- a/scripts/fixup_notices_rendered.php +++ b/scripts/fixup_notices_rendered.php @@ -31,7 +31,12 @@ require_once(INSTALLDIR . '/lib/common.php'); common_log(LOG_INFO, 'Starting to render old notices.'); +$start_at = ($argc > 1) ? $argv[1] : NULL; + $notice = new Notice(); +if ($start_at) { + $notice->whereAdd('id >= ' . $start_at); +} $cnt = $notice->find(); while ($notice->fetch()) {