summaryrefslogtreecommitdiffstats
path: root/user_guide/libraries
diff options
context:
space:
mode:
authorDerek Allard <derek.allard@ellislab.com>2008-09-25 15:04:12 +0200
committerDerek Allard <derek.allard@ellislab.com>2008-09-25 15:04:12 +0200
commit69db8efaffadfc93ff0eec3a9733793e8b358dfb (patch)
treec581d95bfcac10ab07371a6128f417ce4bdef88d /user_guide/libraries
parenta7cf027235c92103118cf415d244447a6ea82b3a (diff)
Fixed incorrect parenthesis in form_open() function. (#5135)
A few doc typo fixes
Diffstat (limited to 'user_guide/libraries')
-rw-r--r--user_guide/libraries/form_validation.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/user_guide/libraries/form_validation.html b/user_guide/libraries/form_validation.html
index 04074bfbc..0f89fb810 100644
--- a/user_guide/libraries/form_validation.html
+++ b/user_guide/libraries/form_validation.html
@@ -58,7 +58,7 @@ Form Validation
<p>CodeIgniter provides a comprehensive form validation and data prepping class that helps minimize the amount of code you'll write.</p>
-<p class="important"><strong>Note:</strong>&nbsp; As of CodeIgniter 1.6.4, this Form Validation class supercedes the old Validation class, which is now deprecated. We
+<p class="important"><strong>Note:</strong>&nbsp; As of CodeIgniter 1.7.0, this Form Validation class supercedes the old Validation class, which is now deprecated. We
have left the old class in the library so applications currently using it will not break, but you are encouraged to migrate to this new version.</p>
<ul>
@@ -585,7 +585,7 @@ it is assumed that the data is your newly processed form data.</p>
<code>$this->form_validation->set_message('username_check')</code>
-<p>You can also override any error message found in the languge file. For example, to change the message for the "required" rule you will do this:</p>
+<p>You can also override any error message found in the language file. For example, to change the message for the "required" rule you will do this:</p>
<code>$this->form_validation->set_message('required', 'Your custom message here');</code>