summaryrefslogtreecommitdiffstats
path: root/system/libraries/Xmlrpc.php
diff options
context:
space:
mode:
authorGreg Aker <greg.aker@ellislab.com>2010-04-07 21:23:01 +0200
committerGreg Aker <greg.aker@ellislab.com>2010-04-07 21:23:01 +0200
commit3fff87d3c7f7374fae3c4013d4ba1c7ba10f17be (patch)
tree157d4b6ff2f04a3a9c34a7fa3c573d63081c5e75 /system/libraries/Xmlrpc.php
parentaaa19bce2b8fb549442a679cba1382510770ddff (diff)
Fixing typo in XMLRpc error message:
http://codeigniter.com/bug_tracker/bug/11556/
Diffstat (limited to 'system/libraries/Xmlrpc.php')
-rw-r--r--system/libraries/Xmlrpc.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/libraries/Xmlrpc.php b/system/libraries/Xmlrpc.php
index 2e0df5c9b..ee04400f5 100644
--- a/system/libraries/Xmlrpc.php
+++ b/system/libraries/Xmlrpc.php
@@ -112,7 +112,7 @@ class CI_Xmlrpc {
$this->xmlrpcerr['unknown_method'] = '1';
$this->xmlrpcstr['unknown_method'] = 'This is not a known method for this XML-RPC Server';
$this->xmlrpcerr['invalid_return'] = '2';
- $this->xmlrpcstr['invalid_return'] = 'The XML data receieved was either invalid or not in the correct form for XML-RPC. Turn on debugging to examine the XML data further.';
+ $this->xmlrpcstr['invalid_return'] = 'The XML data received was either invalid or not in the correct form for XML-RPC. Turn on debugging to examine the XML data further.';
$this->xmlrpcerr['incorrect_params'] = '3';
$this->xmlrpcstr['incorrect_params'] = 'Incorrect parameters were passed to method';
$this->xmlrpcerr['introspect_unknown'] = '4';