completely removed Plugins from CodeIgniter
diff --git a/user_guide/helpers/captcha_helper.html b/user_guide/helpers/captcha_helper.html
index f418823..f358af1 100644
--- a/user_guide/helpers/captcha_helper.html
+++ b/user_guide/helpers/captcha_helper.html
@@ -88,7 +88,7 @@
<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 @@
<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 />