Changeset 21461 for branches/version-2_12-dev/data/module/SOAP/Server.php
- Timestamp:
- 2012/02/09 01:26:58 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_12-dev/data/module/SOAP/Server.php
r21318 r21461 295 295 296 296 foreach ($this->headers as $k => $v) { 297 $v = str_replace(array("\r", "\n"), '', $v); 297 298 header("$k: $v"); 298 299 $hdrs .= "$k: $v\r\n"; … … 598 599 $map = $this->soapobject->__dispatch($this->methodname); 599 600 } elseif (method_exists($this->soapobject, $this->methodname)) { 600 /* No map, all public functions are SOAP functions. */ 601 return true; 601 if (isset($this->soapobject->__dispatch_map[$this->methodname])) { 602 // pdp - 2011-04-29 - declared output will be copied to return_type and use in buildResult 603 $map = $this->soapobject->__dispatch_map[$this->methodname]; 604 } else { 605 /* No map, all public functions are SOAP functions. */ 606 return true; 607 } 602 608 } 603 609 }
Note: See TracChangeset
for help on using the changeset viewer.
