diff options
Diffstat (limited to 'scripts/fixup_notices_rendered.php')
-rwxr-xr-x | scripts/fixup_notices_rendered.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/fixup_notices_rendered.php b/scripts/fixup_notices_rendered.php index 7b29f0d23..c6c925729 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()) { |