From: <var...@us...> - 2012-11-14 16:23:13
|
Revision: 8448 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=8448&view=rev Author: vargenau Date: 2012-11-14 16:23:06 +0000 (Wed, 14 Nov 2012) Log Message: ----------- elseif Modified Paths: -------------- trunk/lib/nusoap/nusoap.php Modified: trunk/lib/nusoap/nusoap.php =================================================================== --- trunk/lib/nusoap/nusoap.php 2012-11-14 16:22:05 UTC (rev 8447) +++ trunk/lib/nusoap/nusoap.php 2012-11-14 16:23:06 UTC (rev 8448) @@ -3414,7 +3414,7 @@ $this->message[$pos]['typePrefix'] = $value_prefix; if (isset($this->namespaces[$value_prefix])) { $this->message[$pos]['type_namespace'] = $this->namespaces[$value_prefix]; - } else if (isset($attrs['xmlns:' . $value_prefix])) { + } elseif (isset($attrs['xmlns:' . $value_prefix])) { $this->message[$pos]['type_namespace'] = $attrs['xmlns:' . $value_prefix]; } // should do something here with the namespace of specified type? This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |