* Suppress useless percentage indicator on output from 7za during dumps
authorBrion Vibber <brion@users.mediawiki.org>
Sun, 22 Jan 2006 07:03:03 +0000 (07:03 +0000)
committerBrion Vibber <brion@users.mediawiki.org>
Sun, 22 Jan 2006 07:03:03 +0000 (07:03 +0000)
RELEASE-NOTES
includes/Export.php

index 0cd4027..9d51b96 100644 (file)
@@ -555,6 +555,7 @@ fully support the editing toolbar, but was found to be too confusing.
 * Use the "block", not the "protect" permission, when determining whether to
   show a "block user" link in the toolbox
 * Fix backup dump text prefetch for XMLReader constant changes in PHP 5.1
+* Suppress useless percentage indicator on output from 7za during dumps
 
 
 === Caveats ===
index f49b685..88ef6e3 100644 (file)
@@ -483,7 +483,7 @@ class DumpBZip2Output extends DumpPipeOutput {
  */
 class Dump7ZipOutput extends DumpPipeOutput {
        function Dump7ZipOutput( $file ) {
-               $command = "7za a -si " . wfEscapeShellArg( $file );
+               $command = "7za a -bd -si " . wfEscapeShellArg( $file );
                parent::DumpPipeOutput( $command );
        }
 }