From: Happy-melon Date: Wed, 13 Jan 2010 18:28:31 +0000 (+0000) Subject: Make 'start' not required. As requested by ^demon on IRC... X-Git-Tag: 1.31.0-rc.0~38288 X-Git-Url: http://git.cyclocoop.org/%28%5B%5E/404?a=commitdiff_plain;h=2e26a98cd3c74b0af7ab348434e8a3e9e3672278;p=lhc%2Fweb%2Fwiklou.git Make 'start' not required. As requested by ^demon on IRC... --- diff --git a/maintenance/refreshLinks.php b/maintenance/refreshLinks.php index 5820d5bfff..863dd02204 100644 --- a/maintenance/refreshLinks.php +++ b/maintenance/refreshLinks.php @@ -30,7 +30,7 @@ class RefreshLinks extends Maintenance { $this->addOption( 'old-redirects-only', 'Only fix redirects with no redirect table entry' ); $this->addOption( 'm', 'Maximum replication lag', false, true ); $this->addOption( 'e', 'Last page id to refresh', false, true ); - $this->addArg( 'start', 'Page_id to start from, default 1' ); + $this->addArg( 'start', 'Page_id to start from, default 1', false ); $this->setBatchSize( 100 ); }