From: Greg Beaver Date: Tue, 8 Jun 2004 17:56:22 +0000 (+0000) Subject: fix bug #1153: PEAR command doesn't work after upgrading X-Git-Tag: php-5.0.0~251 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=628e5530b9f017ad3af3c81ba1639ccd2f0b3071;p=php fix bug #1153: PEAR command doesn't work after upgrading reverting earlier fix - people must have register_argc_argv=on set in php.ini for PEAR to work. --- diff --git a/pear/scripts/pear.bat b/pear/scripts/pear.bat index 21605eee97..2b30f8162a 100755 --- a/pear/scripts/pear.bat +++ b/pear/scripts/pear.bat @@ -64,6 +64,6 @@ ECHO The current value is: ECHO %PHP_PEAR_PHP_BIN% GOTO END :RUN -"%PHP_PEAR_PHP_BIN%" -C -d output_buffering=1 -d register_argc_argv=On -d include_path="%PHP_PEAR_INSTALL_DIR%" -f "%PHP_PEAR_INSTALL_DIR%\pearcmd.php" -- %1 %2 %3 %4 %5 %6 %7 %8 %9 +"%PHP_PEAR_PHP_BIN%" -C -d output_buffering=1 -d include_path="%PHP_PEAR_INSTALL_DIR%" -f "%PHP_PEAR_INSTALL_DIR%\pearcmd.php" -- %1 %2 %3 %4 %5 %6 %7 %8 %9 :END @ECHO ON