diff options
author | Derek Jones <derek.jones@ellislab.com> | 2009-06-24 18:30:41 +0200 |
---|---|---|
committer | Derek Jones <derek.jones@ellislab.com> | 2009-06-24 18:30:41 +0200 |
commit | 626d71d54f3dbbbd67b904f009bda36597757e56 (patch) | |
tree | a5c286e3adbdfb95199ddc5bca177b86c64827d8 | |
parent | 7e39c0cdbaab7be5f8738ee964739e176d1639b7 (diff) |
tweaked and dropped the strtolower altogether from checking xmlrpcTypes array since it's accessed later without changing the type's casing anyway
-rw-r--r-- | system/libraries/Xmlrpc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/libraries/Xmlrpc.php b/system/libraries/Xmlrpc.php index 4b3470c34..5460842b6 100644 --- a/system/libraries/Xmlrpc.php +++ b/system/libraries/Xmlrpc.php @@ -231,7 +231,7 @@ class CI_Xmlrpc { { if (is_array($value) && isset($value['0'])) { - if ( ! isset($value['1']) OR (! isset($this->xmlrpcTypes[$value['1']]) && ! isset($this->xmlrpcTypes[strtolower($value['1'])]))) + if ( ! isset($value['1']) OR (! isset($this->xmlrpcTypes[$value['1']]))) { if (is_array($value[0])) { |