diff options
author | Derek Jones <derek.jones@ellislab.com> | 2010-03-10 03:44:27 +0100 |
---|---|---|
committer | Derek Jones <derek.jones@ellislab.com> | 2010-03-10 03:44:27 +0100 |
commit | c6da50384e06c60e242cb4442abb9c6c9b450674 (patch) | |
tree | 40f5e6dbc6c9d10b933c07be01de660ee8d6f2fb /user_guide/helpers | |
parent | a9730c337ef046f1c5391cec2a9e54ac613a4e6d (diff) |
completely removed Plugins from CodeIgniter
Diffstat (limited to 'user_guide/helpers')
-rw-r--r-- | user_guide/helpers/captcha_helper.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/user_guide/helpers/captcha_helper.html b/user_guide/helpers/captcha_helper.html index f418823ed..f358af19e 100644 --- a/user_guide/helpers/captcha_helper.html +++ b/user_guide/helpers/captcha_helper.html @@ -88,7 +88,7 @@ CAPTCHA Helper <p>The "word" is the word that appears in the captcha image, which if not supplied to the function, will be a random string.</p> - <h3>Using the CAPTCHA plugin</h3> + <h3>Using the CAPTCHA helper</h3> <p>Once loaded you can generate a captcha like this:</p> @@ -139,7 +139,7 @@ echo $cap['image'];</code> <p>Here is an example of usage with a database. On the page where the CAPTCHA will be shown you'll have something like this:</p> -<code>$this->load->plugin('captcha');<br /> +<code>$this->load->helper('captcha');<br /> $vals = array(<br /> 'img_path' => './captcha/',<br /> 'img_url' => 'http://example.com/captcha/'<br /> |