dmitry Thu May 25 08:14:51 2006 UTC
Added files: (Branch: PHP_5_1)
/php-src/ext/soap/tests/bugs bug37278.phpt
Modified files:
/php-src NEWS
/php-src/ext/soap soap.c
Log:
Fixed bug #37278 (SOAP not respecting uri in __soapCall)
http://cvs.php.net/viewcvs.cgi/php-src/NEWS?r1=1.2027.2.558&r2=1.2027.2.559&diff_format=u
Index: php-src/NEWS
diff -u php-src/NEWS:1.2027.2.558 php-src/NEWS:1.2027.2.559
--- php-src/NEWS:1.2027.2.558 Thu May 25 07:06:04 2006
+++ php-src/NEWS Thu May 25 08:14:50 2006
@@ -16,6 +16,7 @@
- Fixed bug #37346 (invalid colormap format) (Pierre)
- Fixed bug #37360 (invalid gif size) (Pierre)
- Fixed bug #37306 (max_execution_time = max_input_time). (Dmitry)
+- Fixed Bug #37278 (SOAP not respecting uri in __soapCall). (Dmitry)
- Fixed bug #37256 (php-fastcgi dosen't handle connection abort). (Dmitry)
04 May 2006, PHP 5.1.4
http://cvs.php.net/viewcvs.cgi/php-src/ext/soap/soap.c?r1=1.156.2.28&r2=1.156.2.29&diff_format=u
Index: php-src/ext/soap/soap.c
diff -u php-src/ext/soap/soap.c:1.156.2.28 php-src/ext/soap/soap.c:1.156.2.29
--- php-src/ext/soap/soap.c:1.156.2.28 Wed May 3 06:36:02 2006
+++ php-src/ext/soap/soap.c Thu May 25 08:14:50 2006
@@ -17,7 +17,7 @@
| Dmitry Stogov <[EMAIL PROTECTED]> |
+----------------------------------------------------------------------+
*/
-/* $Id: soap.c,v 1.156.2.28 2006/05/03 06:36:02 dmitry Exp $ */
+/* $Id: soap.c,v 1.156.2.29 2006/05/25 08:14:50 dmitry Exp $ */
#ifdef HAVE_CONFIG_H
#include "config.h"
@@ -2671,7 +2671,7 @@
if (zend_hash_find(ht, "uri", sizeof("uri"),
(void**)&tmp) == SUCCESS &&
Z_TYPE_PP(tmp) == IS_STRING) {
- soap_action = Z_STRVAL_PP(tmp);
+ uri = Z_STRVAL_PP(tmp);
}
} else if (Z_TYPE_P(options) != IS_NULL) {
php_error_docref(NULL TSRMLS_CC, E_ERROR, "first
parameter must be string or null");
http://cvs.php.net/viewcvs.cgi/php-src/ext/soap/tests/bugs/bug37278.phpt?view=markup&rev=1.1
Index: php-src/ext/soap/tests/bugs/bug37278.phpt
+++ php-src/ext/soap/tests/bugs/bug37278.phpt
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php