diff options
author | Greg Aker <greg@gregaker.net> | 2011-08-20 21:41:51 +0200 |
---|---|---|
committer | Greg Aker <greg@gregaker.net> | 2011-08-20 21:41:51 +0200 |
commit | 54a8dcd55f15772acd0b2b39dd8edaa7f3bfcda8 (patch) | |
tree | 8068c197883c4ba232c39a32311b6d4270fcca1e | |
parent | 7ebf87e671b7ba552368f4c6069a8577b1501c3f (diff) |
Fixed a bug (#181) where a mis-spelling was in the form validation language file.
-rw-r--r-- | system/language/english/form_validation_lang.php | 2 | ||||
-rw-r--r-- | user_guide/changelog.html | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/system/language/english/form_validation_lang.php b/system/language/english/form_validation_lang.php index 3418f29ab..d1cf0399d 100644 --- a/system/language/english/form_validation_lang.php +++ b/system/language/english/form_validation_lang.php @@ -7,7 +7,7 @@ $lang['valid_emails'] = "The %s field must contain all valid email addresses."; $lang['valid_url'] = "The %s field must contain a valid URL."; $lang['valid_ip'] = "The %s field must contain a valid IP."; $lang['min_length'] = "The %s field must be at least %s characters in length."; -$lang['max_length'] = "The %s field can not exceed %s characters in length."; +$lang['max_length'] = "The %s field cannot exceed %s characters in length."; $lang['exact_length'] = "The %s field must be exactly %s characters in length."; $lang['alpha'] = "The %s field may only contain alphabetical characters."; $lang['alpha_numeric'] = "The %s field may only contain alpha-numeric characters."; diff --git a/user_guide/changelog.html b/user_guide/changelog.html index 332c258c7..3e91f47c7 100644 --- a/user_guide/changelog.html +++ b/user_guide/changelog.html @@ -96,6 +96,7 @@ Change Log <li class="reactor">Fixed a bug (Reactor #19) where 1) the 404_override route was being ignored in some cases, and 2) auto-loaded libraries were not available to the 404_override controller when a controller existed but the requested method did not.</li> <li class="rector">Fixed a bug (Reactor #89) where MySQL export would fail if the table had hyphens or other non alphanumeric/underscore characters.</li> <li class="reactor">Fixed a bug (#200) where MySQL queries would be malformed after calling <samp>count_all()</samp> then <samp>db->get()</samp></li> + <li>Fixed a bug (#181) where a mis-spelling was in the form validation language file.</li> </ul> <h2>Version 2.0.3</h2> |