From 2e26a98cd3c74b0af7ab348434e8a3e9e3672278 Mon Sep 17 00:00:00 2001 From: Happy-melon Date: Wed, 13 Jan 2010 18:28:31 +0000 Subject: [PATCH] Make 'start' not required. As requested by ^demon on IRC... --- maintenance/refreshLinks.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ); } -- 2.20.1