From a8f50b8fafcd27c86560c36b04ce42c6ed81b873 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Fri, 17 Aug 2007 14:39:11 +0000 Subject: [PATCH] fix regression from r24838 -- lost a '>' char for redirecting 7za output to null --- includes/Export.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/Export.php b/includes/Export.php index e7fc2c46be..c3ef9451aa 100644 --- a/includes/Export.php +++ b/includes/Export.php @@ -558,7 +558,7 @@ class Dump7ZipOutput extends DumpPipeOutput { $command = "7za a -bd -si " . wfEscapeShellArg( $file ); // Suppress annoying useless crap from p7zip // Unfortunately this could suppress real error messages too - $command .= ' ' . wfGetNull() . ' 2>&1'; + $command .= ' >' . wfGetNull() . ' 2>&1'; parent::DumpPipeOutput( $command ); } } -- 2.20.1