Fixed problem with merging of identical changes
authorMr. E23 <e23@users.mediawiki.org>
Sun, 14 Mar 2004 21:34:03 +0000 (21:34 +0000)
committerMr. E23 <e23@users.mediawiki.org>
Sun, 14 Mar 2004 21:34:03 +0000 (21:34 +0000)
includes/GlobalFunctions.php

index 8133b75..ac00d4b 100644 (file)
@@ -879,7 +879,7 @@ function wfMerge( $old, $mine, $yours, &$result ){
                $conflict = false;
        }
        pclose( $handle );
-       $cmd = "{$wgDiff3} -a --merge $mytextName $oldtextName $yourtextName";
+       $cmd = "{$wgDiff3} -a -e --merge $mytextName $oldtextName $yourtextName";
        $handle = popen( $cmd, "r" );
        $result = "";
        do {