From: Dmitry Stogov Date: Thu, 29 Nov 2012 12:41:09 +0000 (+0400) Subject: Merge branch 'PHP-5.3' into PHP-5.4 X-Git-Tag: php-5.4.10RC1~17 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7f7cff0bbbdda0626839e7f1aee40bcf9d6c9df5;p=php Merge branch 'PHP-5.3' into PHP-5.4 * PHP-5.3: Fixed bug #63271 (SOAP wsdl cache is not enabled after initial requests) Conflicts: NEWS ext/soap/soap.c --- 7f7cff0bbbdda0626839e7f1aee40bcf9d6c9df5 diff --cc NEWS index e8ad77a2ac,53f0112028..2a4b66e23f --- a/NEWS +++ b/NEWS @@@ -38,12 -31,13 +38,16 @@@ PH - Reflection: . Fixed Bug #63614 (Fatal error on Reflection). (Laruence) + - SOAP + . Fixed bug #63271 (SOAP wsdl cache is not enabled after initial requests). + (John Jawed, Dmitry) + -22 Nov 2012, PHP 5.3.19 +22 Nov 2012, PHP 5.4.9 -- Core +- Core: + . Fixed bug #63305 (zend_mm_heap corrupted with traits). (Dmitry, Laruence) + . Fixed bug #63369 ((un)serialize() leaves dangling pointers, causes crashes). + (Tony, Andrew Sitnikov) . Fixed bug #63241 (PHP fails to open Windows deduplicated files). (daniel dot stelter-gliese at innogames dot de) . Fixed bug #62444 (Handle leak in is_readable on windows). diff --cc ext/soap/soap.c index abeab53b9e,7576466c21..cd45ec6853 --- a/ext/soap/soap.c +++ b/ext/soap/soap.c @@@ -463,19 -548,10 +463,6 @@@ zend_module_entry soap_module_entry = ZEND_GET_MODULE(soap) #endif - ZEND_INI_MH(OnUpdateCacheEnabled) - { - if (OnUpdateBool(entry, new_value, new_value_length, mh_arg1, mh_arg2, mh_arg3, stage TSRMLS_CC) == FAILURE) { - return FAILURE; - } - if (SOAP_GLOBAL(cache_enabled)) { - SOAP_GLOBAL(cache) = SOAP_GLOBAL(cache_mode); - } else { - SOAP_GLOBAL(cache) = 0; - } - return SUCCESS; - } -#ifndef ZEND_ENGINE_2 -# define OnUpdateLong OnUpdateInt -#endif -- ZEND_INI_MH(OnUpdateCacheMode) { char *p;