r24875 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r24874‎ | r24875 | r24876 >
Date:14:39, 17 August 2007
Author:brion
Status:old
Tags:
Comment:
fix regression from r24838 -- lost a '>' char for redirecting 7za output to null
Modified paths:
  • /trunk/phase3/includes/Export.php (modified) (history)

Diff [purge]

Index: trunk/phase3/includes/Export.php
@@ -558,7 +558,7 @@
559559 $command = "7za a -bd -si " . wfEscapeShellArg( $file );
560560 // Suppress annoying useless crap from p7zip
561561 // Unfortunately this could suppress real error messages too
562 - $command .= ' ' . wfGetNull() . ' 2>&1';
 562+ $command .= ' >' . wfGetNull() . ' 2>&1';
563563 parent::DumpPipeOutput( $command );
564564 }
565565 }

Follow-up revisions

RevisionCommit summaryAuthorDate
r25016Merged revisions 24866-25015 via svnmerge from...david23:06, 21 August 2007

Past revisions this follows-up on

RevisionCommit summaryAuthorDate
r24838(bug 8737) Fix warnings caused by incorrect use of `/dev/null` when piping pr...robchurch21:44, 15 August 2007

Status & tagging log