diff options
author | Andrey Andreev <narf@bofh.bg> | 2012-10-05 12:37:48 +0200 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2012-10-05 12:37:48 +0200 |
commit | 4a1b4188cc4f6ff69a6502a10ee97c50f3eaebdd (patch) | |
tree | f79389e95303024567f6a9b0c360cd8a948ca6a5 | |
parent | 0af025841ac1acb05a79bf8758d7bf05d21ebd52 (diff) | |
parent | 740480a7513e29e201f56c6481067108a2031509 (diff) |
Merge pull request #1854 from tocaibiza/develop
Bug-fix in XML-RPC library [ci skip]
-rwxr-xr-x[-rw-r--r--] | system/libraries/Xmlrpc.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/system/libraries/Xmlrpc.php b/system/libraries/Xmlrpc.php index a8aaa2088..dc5d27f8c 100644..100755 --- a/system/libraries/Xmlrpc.php +++ b/system/libraries/Xmlrpc.php @@ -1317,15 +1317,15 @@ class XML_RPC_Values extends CI_Xmlrpc { $type = $type === '' ? 'string' : $type; - if ($this->xmlrpcTypes[$type] === 1) + if ($this->xmlrpcTypes[$type] == 1) { $this->addScalar($val,$type); } - elseif ($this->xmlrpcTypes[$type] === 2) + elseif ($this->xmlrpcTypes[$type] == 2) { $this->addArray($val); } - elseif ($this->xmlrpcTypes[$type] === 3) + elseif ($this->xmlrpcTypes[$type] == 3) { $this->addStruct($val); } @@ -1351,7 +1351,7 @@ class XML_RPC_Values extends CI_Xmlrpc return 0; } - if ($typeof !== 1) + if ($typeof != 1) { echo '<strong>XML_RPC_Values</strong>: not a scalar type (${typeof})<br />'; return 0; |