dmitry Thu May 25 08:14:28 2006 UTC
Added files: (Branch: PHP_5_2)
/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.547.2.49&r2=1.2027.2.547.2.50&diff_format=u
Index: php-src/NEWS
diff -u php-src/NEWS:1.2027.2.547.2.49 php-src/NEWS:1.2027.2.547.2.50
--- php-src/NEWS:1.2027.2.547.2.49 Thu May 25 07:46:25 2006
+++ php-src/NEWS Thu May 25 08:14:28 2006
@@ -81,6 +81,7 @@
- Fixed bug #37313 (sigemptyset() used without including <signal.h>).
(jdolecek)
- 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)
- Fixed bug #37244 (Added strict flag to base64_decode() that enforces
RFC3548 compliance). (Ilia)
http://cvs.php.net/viewcvs.cgi/php-src/ext/soap/soap.c?r1=1.156.2.28.2.1&r2=1.156.2.28.2.2&diff_format=u
Index: php-src/ext/soap/soap.c
diff -u php-src/ext/soap/soap.c:1.156.2.28.2.1
php-src/ext/soap/soap.c:1.156.2.28.2.2
--- php-src/ext/soap/soap.c:1.156.2.28.2.1 Tue May 9 23:58:46 2006
+++ php-src/ext/soap/soap.c Thu May 25 08:14:28 2006
@@ -17,7 +17,7 @@
| Dmitry Stogov <[EMAIL PROTECTED]> |
+----------------------------------------------------------------------+
*/
-/* $Id: soap.c,v 1.156.2.28.2.1 2006/05/09 23:58:46 helly Exp $ */
+/* $Id: soap.c,v 1.156.2.28.2.2 2006/05/25 08:14:28 dmitry Exp $ */
#ifdef HAVE_CONFIG_H
#include "config.h"
@@ -2663,7 +2663,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