diff options
author | Greg Aker <greg.aker@ellislab.com> | 2010-11-01 18:24:00 +0100 |
---|---|---|
committer | Greg Aker <greg.aker@ellislab.com> | 2010-11-01 18:24:00 +0100 |
commit | e1f6e9ddff788f6a154f5f35dc117d14aeb0c484 (patch) | |
tree | 48c415c82cfe51a91498f3deec2339ad5ebccd9e /user_guide | |
parent | e4054b8e62bf8dcbfbc689752a6e952fe1aa1be0 (diff) |
Fix #220 -- Missing semi-colon in captcha helper userguide on SQL command.
Diffstat (limited to 'user_guide')
-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 bd7482266..d6eb0652c 100644 --- a/user_guide/helpers/captcha_helper.html +++ b/user_guide/helpers/captcha_helper.html @@ -135,7 +135,7 @@ echo $cap['image'];</code> word varchar(20) NOT NULL,<br /> PRIMARY KEY `captcha_id` (`captcha_id`),<br /> KEY `word` (`word`)<br /> -)</code> +);</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> @@ -192,4 +192,4 @@ Previous Topic: <a href="url_helper.html">URL Helper</a> </div> </body> -</html>
\ No newline at end of file +</html> |