From: Brion Vibber Date: Fri, 17 Aug 2007 14:39:11 +0000 (+0000) Subject: fix regression from r24838 -- lost a '>' char for redirecting 7za output to null X-Git-Tag: 1.31.0-rc.0~51739 X-Git-Url: http://git.cyclocoop.org/%7B%24admin_url%7Dmembres/cotisations/gestion/rappel_supprimer.php?a=commitdiff_plain;h=a8f50b8fafcd27c86560c36b04ce42c6ed81b873;p=lhc%2Fweb%2Fwiklou.git fix regression from r24838 -- lost a '>' char for redirecting 7za output to null --- 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 ); } }