From: Evan Prodromou Date: Fri, 14 Nov 2008 14:40:14 +0000 (-0500) Subject: add start_at argument for notice rendering fixer X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=10383a3211d0b0864a9719c9c3468616447b5c8c;p=quix0rs-gnu-social.git add start_at argument for notice rendering fixer darcs-hash:20081114144014-84dde-b75b44b8bb485c4122655e38b8201736fb3f64ed.gz --- 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()) {