@@ 803-808 (lines=6) @@ | ||
800 | $protocol = isset($extraOptions['protocol']) ? $extraOptions['protocol'] : ''; |
|
801 | $encodePhpObjects = isset($extraOptions['encode_php_objs']) ? (bool)$extraOptions['encode_php_objs'] : false; |
|
802 | $decodePhpObjects = isset($extraOptions['decode_php_objs']) ? (bool)$extraOptions['decode_php_objs'] : false; |
|
803 | if (isset($extraOptions['return_on_fault'])) { |
|
804 | $decodeFault = true; |
|
805 | $faultResponse = $extraOptions['return_on_fault']; |
|
806 | } else { |
|
807 | $decodeFault = false; |
|
808 | } |
|
809 | ||
810 | $namespace = '\\PhpXmlRpc\\'; |
|
811 | $reqClass = $namespace . 'Request'; |
|
@@ 892-898 (lines=7) @@ | ||
889 | $decodePhpObjects = isset($extraOptions['decode_php_objs']) ? (bool)$extraOptions['decode_php_objs'] : false; |
|
890 | $clientCopyMode = isset($extraOptions['simple_client_copy']) ? (int)($extraOptions['simple_client_copy']) : 0; |
|
891 | $prefix = isset($extraOptions['prefix']) ? $extraOptions['prefix'] : 'xmlrpc'; |
|
892 | if (isset($extraOptions['return_on_fault'])) { |
|
893 | $decodeFault = true; |
|
894 | $faultResponse = $extraOptions['return_on_fault']; |
|
895 | } else { |
|
896 | $decodeFault = false; |
|
897 | $faultResponse = ''; |
|
898 | } |
|
899 | ||
900 | $namespace = '\\PhpXmlRpc\\'; |
|
901 |