cataphract Tue, 08 Feb 2011 16:29:34 +0000 Revision: http://svn.php.net/viewvc?view=revision&revision=308127
Log: - Fixed bug #53959 (reflection data for fgetcsv out-of-date). Bug: http://bugs.php.net/53959 (Re-Opened) feature or something old? Changed paths: U php/php-src/branches/PHP_5_3/NEWS U php/php-src/branches/PHP_5_3/ext/standard/basic_functions.c U php/php-src/trunk/ext/standard/basic_functions.c Modified: php/php-src/branches/PHP_5_3/NEWS =================================================================== --- php/php-src/branches/PHP_5_3/NEWS 2011-02-08 12:17:52 UTC (rev 308126) +++ php/php-src/branches/PHP_5_3/NEWS 2011-02-08 16:29:34 UTC (rev 308127) @@ -16,6 +16,7 @@ - Core: . Added ability to connect to HTTPS sites through proxy with basic authentication using stream_context/http/header/Proxy-Authorization (Dmitry) + . Fixed bug #53959 (reflection data for fgetcsv out-of-date). (Richard) . Fixed bug #53577 (Regression introduced in 5.3.4 in open_basedir with a trailing forward slash). (lekensteyn at gmail dot com, Pierre) . Fixed bug #53682 (Fix compile on the VAX). (Rasmus, jklos) Modified: php/php-src/branches/PHP_5_3/ext/standard/basic_functions.c =================================================================== --- php/php-src/branches/PHP_5_3/ext/standard/basic_functions.c 2011-02-08 12:17:52 UTC (rev 308126) +++ php/php-src/branches/PHP_5_3/ext/standard/basic_functions.c 2011-02-08 16:29:34 UTC (rev 308127) @@ -1233,6 +1233,7 @@ ZEND_ARG_INFO(0, length) ZEND_ARG_INFO(0, delimiter) ZEND_ARG_INFO(0, enclosure) + ZEND_ARG_INFO(0, escape) ZEND_END_ARG_INFO() #if (!defined(__BEOS__) && !defined(NETWARE) && HAVE_REALPATH) || defined(ZTS) Modified: php/php-src/trunk/ext/standard/basic_functions.c =================================================================== --- php/php-src/trunk/ext/standard/basic_functions.c 2011-02-08 12:17:52 UTC (rev 308126) +++ php/php-src/trunk/ext/standard/basic_functions.c 2011-02-08 16:29:34 UTC (rev 308127) @@ -1234,6 +1234,7 @@ ZEND_ARG_INFO(0, length) ZEND_ARG_INFO(0, delimiter) ZEND_ARG_INFO(0, enclosure) + ZEND_ARG_INFO(0, escape) ZEND_END_ARG_INFO() #if (!defined(__BEOS__) && !defined(NETWARE) && HAVE_REALPATH) || defined(ZTS)
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
