From: Greg Beaver Date: Tue, 3 Feb 2009 18:17:24 +0000 (+0000) Subject: fix bug #47265 (generating phar.phar fails because of safe_mode) X-Git-Tag: RELEASE_1_3_5~182 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b634bf4ce8939a854dd0afb371454a15c9722c39;p=php fix bug #47265 (generating phar.phar fails because of safe_mode) --- diff --git a/NEWS b/NEWS index ffe0b3b744..d71cb9758d 100644 --- a/NEWS +++ b/NEWS @@ -1,9 +1,10 @@ PHP NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| ?? ??? 2009, PHP 5.3.0 Beta 2 +- Fixed bug #47265 (generating phar.phar failes because of safe_mode). (Greg) - Fixed bug #47229 (preg_quote() should escape the '-' char). (Nuno) -- Fixed bug #46347 (parse_ini_file() doesn't support * in keys). (Nuno) - Fixed bug #47031 (Fix constants in DualIterator example). (Etienne) +- Fixed bug #46347 (parse_ini_file() doesn't support * in keys). (Nuno) 29 Jan 2009, PHP 5.3.0 Beta 1 diff --git a/ext/phar/Makefile.frag b/ext/phar/Makefile.frag index c29e97f868..554bc0cdfd 100755 --- a/ext/phar/Makefile.frag +++ b/ext/phar/Makefile.frag @@ -4,7 +4,7 @@ $(srcdir)/phar_path_check.c: $(srcdir)/phar_path_check.re pharcmd: $(builddir)/phar.php $(builddir)/phar.phar -PHP_PHARCMD_SETTINGS = -d 'open_basedir=' -d 'output_buffering=0' -d 'memory_limit=-1' -d phar.readonly=0 +PHP_PHARCMD_SETTINGS = -d 'open_basedir=' -d 'output_buffering=0' -d 'memory_limit=-1' -d phar.readonly=0 -d 'safe_mode=0' PHP_PHARCMD_EXECUTABLE = ` \ if test -x "$(top_builddir)/$(SAPI_CLI_PATH)"; then \ $(top_srcdir)/build/shtool echo -n -- "$(top_builddir)/$(SAPI_CLI_PATH) -n"; \