From: Antoine Musso Date: Sat, 12 Jun 2004 21:32:18 +0000 (+0000) Subject: fix isWindows to wfIsWindows. X-Git-Tag: 1.5.0alpha1~2873 X-Git-Url: http://git.cyclocoop.org/%7B%24admin_url%7Dcompta/comptes/journal.php?a=commitdiff_plain;h=ae8a5e31ab35060c407e0cd724a4e31acbbf4721;p=lhc%2Fweb%2Fwiklou.git fix isWindows to wfIsWindows. --- 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 );