From 628e5530b9f017ad3af3c81ba1639ccd2f0b3071 Mon Sep 17 00:00:00 2001 From: Greg Beaver Date: Tue, 8 Jun 2004 17:56:22 +0000 Subject: [PATCH] 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. --- pear/scripts/pear.bat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.50.1