]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
add start_at argument for notice rendering fixer
authorEvan Prodromou <evan@prodromou.name>
Fri, 14 Nov 2008 14:40:14 +0000 (09:40 -0500)
committerEvan Prodromou <evan@prodromou.name>
Fri, 14 Nov 2008 14:40:14 +0000 (09:40 -0500)
darcs-hash:20081114144014-84dde-b75b44b8bb485c4122655e38b8201736fb3f64ed.gz

scripts/fixup_notices_rendered.php

index 7b29f0d23557755fe066533ffa3a2912736c1a35..c6c925729eca884dc446a3450185561a73edd30d 100755 (executable)
@@ -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()) {