]> granicus.if.org Git - php/commitdiff
Merge branch 'PHP-5.3' into PHP-5.4
authorDmitry Stogov <dmitry@zend.com>
Thu, 29 Nov 2012 12:41:09 +0000 (16:41 +0400)
committerDmitry Stogov <dmitry@zend.com>
Thu, 29 Nov 2012 12:41:09 +0000 (16:41 +0400)
* PHP-5.3:
  Fixed bug #63271 (SOAP wsdl cache is not enabled after initial requests)

Conflicts:
NEWS
ext/soap/soap.c

1  2 
NEWS
ext/soap/soap.c

diff --cc NEWS
index e8ad77a2ac3fe736b032635f07361525e0cce9af,53f011202881a6e8a6ebfba8ff94d1ed620d082b..2a4b66e23fdf17a336d2ecbd6abca5d6203117f4
--- 1/NEWS
--- 2/NEWS
+++ b/NEWS
@@@ -38,12 -31,13 +38,16 @@@ PH
  - Reflection:
    . Fixed Bug #63614 (Fatal error on Reflection). (Laruence)
  
 -22 Nov 2012, PHP 5.3.19
+ - SOAP
+   . Fixed bug #63271 (SOAP wsdl cache is not enabled after initial requests).
+     (John Jawed, Dmitry)
 +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 abeab53b9e7a979a31e120e8cac5ac9a6845f3a9,7576466c21e5c0408affeb7f5e372c7c158f8add..cd45ec68535ae5ec5241618ba6aaf971cdc32930
@@@ -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;