From 0fecc8c6a02d0e8c84d8169fecea710579bf78a3 Mon Sep 17 00:00:00 2001 From: Pierre Joye Date: Thu, 22 Apr 2010 08:58:07 +0000 Subject: [PATCH] - Bug #51629, CURLOPT_FOLLOWLOCATION error message is misleading --- NEWS | 2 ++ ext/curl/interface.c | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index 92ca9f91d8..5cc36dacbb 100644 --- a/NEWS +++ b/NEWS @@ -21,6 +21,8 @@ PHP NEWS requests (Fixes CVE-2010-0397, bug #51288). (Raphael Geissert) - Fixed 64-bit integer overflow in mhash_keygen_s2k(). (Clément LECIGNE, Stas) +- Fixed bug #51629 (CURLOPT_FOLLOWLOCATION error message is misleading). + (Pierre) - Fixed bug #51627 (script path not correctly evaluated). (russell dot tempero at rightnow dot com) - Fixed bug #51615 (PHP crash with wrong HTML in SimpleXML). (Felipe) diff --git a/ext/curl/interface.c b/ext/curl/interface.c index b1bedb75f3..f8b8e57635 100644 --- a/ext/curl/interface.c +++ b/ext/curl/interface.c @@ -1678,7 +1678,7 @@ static int _php_curl_setopt(php_curl *ch, long option, zval **zvalue, zval *retu convert_to_long_ex(zvalue); if ((PG(open_basedir) && *PG(open_basedir)) || PG(safe_mode)) { if (Z_LVAL_PP(zvalue) != 0) { - php_error_docref(NULL TSRMLS_CC, E_WARNING, "CURLOPT_FOLLOWLOCATION cannot be activated when in safe_mode or an open_basedir is set"); + php_error_docref(NULL TSRMLS_CC, E_WARNING, "CURLOPT_FOLLOWLOCATION cannot be activated when safe_mode is enabled or an open_basedir is set"); RETVAL_FALSE; return 1; } -- 2.40.0