summaryrefslogtreecommitdiff
path: root/ext/soap/soap.c
diff options
context:
space:
mode:
Diffstat (limited to 'ext/soap/soap.c')
-rw-r--r--ext/soap/soap.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/ext/soap/soap.c b/ext/soap/soap.c
index 6eef78b505..873d926e65 100644
--- a/ext/soap/soap.c
+++ b/ext/soap/soap.c
@@ -2800,10 +2800,13 @@ static sdlFunctionPtr deserialize_function_call(sdlPtr sdl, xmlDocPtr request, c
trav = body->children;
while (trav != NULL) {
if (trav->type == XML_ELEMENT_NODE) {
+/*
if (func != NULL) {
soap_server_fault("Client", "looks like we got \"Body\" with several functions call", NULL, NULL, NULL TSRMLS_CC);
}
+*/
func = trav;
+ break; /* FIXME: the rest of body is ignored */
}
trav = trav->next;
}