From: Antoine Musso Date: Thu, 1 Mar 2012 11:33:38 +0000 (+0000) Subject: Bug 34734 - compressOld.php ignoring -s option X-Git-Tag: 1.31.0-rc.0~24449 X-Git-Url: http://git.cyclocoop.org/%7B%24admin_url%7Dmes_infos.php?a=commitdiff_plain;h=7adf3cbe62922488bb9e1476f12c89ea0cb89dff;p=lhc%2Fweb%2Fwiklou.git Bug 34734 - compressOld.php ignoring -s option This is fixing a regression caused by r90549. Patch by christian at quelltextlich dot at --- 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', '' );