From ae8a5e31ab35060c407e0cd724a4e31acbbf4721 Mon Sep 17 00:00:00 2001 From: Antoine Musso Date: Sat, 12 Jun 2004 21:32:18 +0000 Subject: [PATCH] fix isWindows to wfIsWindows. --- includes/GlobalFunctions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/GlobalFunctions.php b/includes/GlobalFunctions.php index a39c79147a..27f126933a 100644 --- a/includes/GlobalFunctions.php +++ b/includes/GlobalFunctions.php @@ -762,7 +762,7 @@ function wfEscapeShellArg( ) $first = false; } - if ( isWindows() ) { + if ( wfIsWindows() ) { $retVal .= '"' . str_replace( '"','\"', $arg ) . '"'; } else { $retVal .= escapeshellarg( $arg ); -- 2.20.1