summaryrefslogtreecommitdiffstats
path: root/user_guide/helpers
diff options
context:
space:
mode:
authorDerek Jones <derek.jones@ellislab.com>2010-03-10 03:44:27 +0100
committerDerek Jones <derek.jones@ellislab.com>2010-03-10 03:44:27 +0100
commitc6da50384e06c60e242cb4442abb9c6c9b450674 (patch)
tree40f5e6dbc6c9d10b933c07be01de660ee8d6f2fb /user_guide/helpers
parenta9730c337ef046f1c5391cec2a9e54ac613a4e6d (diff)
completely removed Plugins from CodeIgniter
Diffstat (limited to 'user_guide/helpers')
-rw-r--r--user_guide/helpers/captcha_helper.html4
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-&gt;load-&gt;plugin(&#x27;captcha&#x27;);<br />
+<code>$this-&gt;load-&gt;helper(&#x27;captcha&#x27;);<br />
$vals = array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&#x27;img_path&#x27; =&gt; &#x27;./captcha/&#x27;,<br />
&nbsp;&nbsp;&nbsp;&nbsp;&#x27;img_url&#x27; =&gt; &#x27;http://example.com/captcha/&#x27;<br />