From: Brion Vibber Date: Thu, 27 Oct 2005 23:09:06 +0000 (+0000) Subject: Don't re-run diff3 with missing files for the debug comment; it'll be wrong. X-Git-Tag: 1.6.0~1293 X-Git-Url: http://git.cyclocoop.org/geomaker.php?a=commitdiff_plain;h=3bf3fb7c9bf19601e17e0853aa446e0b4b54186e;p=lhc%2Fweb%2Fwiklou.git Don't re-run diff3 with missing files for the debug comment; it'll be wrong. --- diff --git a/includes/GlobalFunctions.php b/includes/GlobalFunctions.php index 1b07a1537a..f26c95a18b 100644 --- a/includes/GlobalFunctions.php +++ b/includes/GlobalFunctions.php @@ -916,7 +916,7 @@ function wfMerge( $old, $mine, $yours, &$result ){ unlink( $mytextName ); unlink( $oldtextName ); unlink( $yourtextName ); if ( $result === '' && $old !== '' && $conflict == false ) { - wfDebug( "Unexpected null result from diff3.\nCommand: $cmd\nOutput: " . `$cmd 2>&1` . "\n" ); + wfDebug( "Unexpected null result from diff3. Command: $cmd\n" ); $conflict = true; } return ! $conflict;