fix isWindows to wfIsWindows.
authorAntoine Musso <hashar@users.mediawiki.org>
Sat, 12 Jun 2004 21:32:18 +0000 (21:32 +0000)
committerAntoine Musso <hashar@users.mediawiki.org>
Sat, 12 Jun 2004 21:32:18 +0000 (21:32 +0000)
includes/GlobalFunctions.php

index a39c791..27f1269 100644 (file)
@@ -762,7 +762,7 @@ function wfEscapeShellArg( )
                        $first = false;
                }
 
-               if ( isWindows() ) {
+               if ( wfIsWindows() ) {
                        $retVal .= '"' . str_replace( '"','\"', $arg ) . '"';
                } else {
                        $retVal .= escapeshellarg( $arg );