From 7adf3cbe62922488bb9e1476f12c89ea0cb89dff Mon Sep 17 00:00:00 2001 From: Antoine Musso Date: Thu, 1 Mar 2012 11:33:38 +0000 Subject: [PATCH] Bug 34734 - compressOld.php ignoring -s option This is fixing a regression caused by r90549. Patch by christian at quelltextlich dot at --- maintenance/storage/compressOld.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maintenance/storage/compressOld.php b/maintenance/storage/compressOld.php index e166bc51b3..d755d582dc 100644 --- a/maintenance/storage/compressOld.php +++ b/maintenance/storage/compressOld.php @@ -70,7 +70,7 @@ class CompressOld extends Maintenance { $type = $this->getOption( 'type', 'concat' ); $chunkSize = $this->getOption( 'chunksize', 20 ); - $startId = $this->getOption( 'start-id', 0 ); + $startId = $this->getOption( 'startid', 0 ); $beginDate = $this->getOption( 'begin-date', '' ); $endDate = $this->getOption( 'end-date', '' ); $extDB = $this->getOption( 'extdb', '' ); -- 2.20.1