cellog          Tue Feb  3 18:17:24 2009 UTC

  Modified files:              (Branch: PHP_5_3)
    /php-src    NEWS 
    /php-src/ext/phar   Makefile.frag 
  Log:
  fix bug #47265 (generating phar.phar fails because of safe_mode)
  
http://cvs.php.net/viewvc.cgi/php-src/NEWS?r1=1.2027.2.547.2.965.2.482&r2=1.2027.2.547.2.965.2.483&diff_format=u
Index: php-src/NEWS
diff -u php-src/NEWS:1.2027.2.547.2.965.2.482 
php-src/NEWS:1.2027.2.547.2.965.2.483
--- php-src/NEWS:1.2027.2.547.2.965.2.482       Tue Feb  3 12:54:44 2009
+++ php-src/NEWS        Tue Feb  3 18:17:24 2009
@@ -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
http://cvs.php.net/viewvc.cgi/php-src/ext/phar/Makefile.frag?r1=1.14.2.8&r2=1.14.2.9&diff_format=u
Index: php-src/ext/phar/Makefile.frag
diff -u php-src/ext/phar/Makefile.frag:1.14.2.8 
php-src/ext/phar/Makefile.frag:1.14.2.9
--- php-src/ext/phar/Makefile.frag:1.14.2.8     Sat Dec 13 14:49:39 2008
+++ php-src/ext/phar/Makefile.frag      Tue Feb  3 18:17:24 2009
@@ -4,7 +4,7 @@
 
 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"; \



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to