diff options
author | Derek Allard <derek.allard@ellislab.com> | 2007-11-21 20:15:11 +0100 |
---|---|---|
committer | Derek Allard <derek.allard@ellislab.com> | 2007-11-21 20:15:11 +0100 |
commit | 65fdfbf4d4fa31ff9c12004c4cd5b7a794536c11 (patch) | |
tree | bfb6ea2d641aa9c2ffd5acd13e80c2a0b133cc18 /user_guide | |
parent | 582e9f8eea096744d530f32854f5ef30759b577e (diff) |
fixed a typo (; in wrong place) in xmlrpc
Diffstat (limited to 'user_guide')
-rw-r--r-- | user_guide/libraries/xmlrpc.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/user_guide/libraries/xmlrpc.html b/user_guide/libraries/xmlrpc.html index a8c624799..77cabe437 100644 --- a/user_guide/libraries/xmlrpc.html +++ b/user_guide/libraries/xmlrpc.html @@ -181,7 +181,7 @@ class and method for processing.</p> $this->load->library('xmlrpc');<br />
$this->load->library('xmlrpcs');<br />
<br />
-$config['functions']['<var>new_post</var>']; = array('function' => '<dfn>My_blog.new_entry</dfn>');<br />
+$config['functions']['<var>new_post</var>'] = array('function' => '<dfn>My_blog.new_entry</dfn>');<br />
$config['functions']['<var>update_post</var>'] = array('function' => '<dfn>My_blog.update_entry</dfn>');<br />
<br />
$this->xmlrpcs->initialize($config);<br />
|