From 6fba6737d586e27908daba1b7a293750e6c82787 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Gustavo=20Andr=C3=A9=20dos=20Santos=20Lopes?= Date: Tue, 8 Feb 2011 16:29:34 +0000 Subject: [PATCH] - Fixed bug #53959 (reflection data for fgetcsv out-of-date). --- NEWS | 1 + ext/standard/basic_functions.c | 1 + 2 files changed, 2 insertions(+) diff --git a/NEWS b/NEWS index 45a9162d55..7f2fe9dc82 100644 --- a/NEWS +++ b/NEWS @@ -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) diff --git a/ext/standard/basic_functions.c b/ext/standard/basic_functions.c index 5c8be35f5d..b74224bd7c 100644 --- a/ext/standard/basic_functions.c +++ b/ext/standard/basic_functions.c @@ -1233,6 +1233,7 @@ ZEND_BEGIN_ARG_INFO_EX(arginfo_fgetcsv, 0, 0, 1) 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) -- 2.50.1