diff options
author | Greg Aker <greg.aker@ellislab.com> | 2010-11-09 20:53:07 +0100 |
---|---|---|
committer | Greg Aker <greg.aker@ellislab.com> | 2010-11-09 20:53:07 +0100 |
commit | 16fcb2e706651c5d81bae56d0223f467c1e291da (patch) | |
tree | 9eb454b6602646d4402d4cb89856e99bee0f47c5 /user_guide/libraries/xmlrpc.html | |
parent | 63277b81edde11b77ff94cbf1c3e5db16c97c4bf (diff) |
Updating code examples in user guide to use CI_Controller instead of Controller
Diffstat (limited to 'user_guide/libraries/xmlrpc.html')
-rw-r--r-- | user_guide/libraries/xmlrpc.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/user_guide/libraries/xmlrpc.html b/user_guide/libraries/xmlrpc.html index 971ab0296..87ca09480 100644 --- a/user_guide/libraries/xmlrpc.html +++ b/user_guide/libraries/xmlrpc.html @@ -211,7 +211,7 @@ an object to that method containing the data sent by the client.</p> <p>Using the above example, if the <var>new_post</var> method is requested, the server will expect a class to exist with this prototype:</p> -<code>class <kbd>My_blog</kbd> extends Controller {<br /> +<code>class <kbd>My_blog</kbd> extends CI_Controller {<br /> <br /> function <kbd>new_post</kbd>(<var>$request</var>)<br /> {<br /> @@ -230,7 +230,7 @@ back information about that particular user (nickname, user ID, email address, e function might look:</p> -<code>class <kbd>My_blog</kbd> extends Controller {<br /> +<code>class <kbd>My_blog</kbd> extends CI_Controller {<br /> <br /> function <kbd>getUserInfo</kbd>(<var>$request</var>)<br /> {<br /> @@ -323,7 +323,7 @@ In it, place this code and save it to your <samp>applications/controllers/</samp <textarea class="textarea" style="width:100%" cols="50" rows="32"><?php -class Xmlrpc_client extends Controller { +class Xmlrpc_client extends CI_Controller { function index() { @@ -361,7 +361,7 @@ In it, place this code and save it to your <samp>applications/controllers/</samp <textarea class="textarea" style="width:100%" cols="50" rows="30"><?php -class Xmlrpc_server extends Controller { +class Xmlrpc_server extends CI_Controller { function index() { |