Last modified: 2012-05-03 02:42:37 UTC
Created attachment 10104 [details] Patch fixing the treatment of the -s option According to it's documentation, compressOld.php allows to limit the treated ids using the "-s" option. However, the "-s" option is ignored.php. The attached patch fixes the problem. Actual Behavior: ---------------- > compressOld.php -t gzip -s 6 Compressing database wikisvn ---------------------------------------------------------------------------- Starting from old_id 0... Expected Behavior: ------------------ > compressOld.php -t gzip -s 6 Compressing database wikisvn ---------------------------------------------------------------------------- Starting from old_id 6...
This is a regression caused by r90549 and hence in 1.19.
Fix applied: In trunk with r112793 In 1.19wmf1 with r112794 In REL1_19 with r112795 Thanks for the patch!