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 /system/language | |
parent | 7ebf87e671b7ba552368f4c6069a8577b1501c3f (diff) |
Fixed a bug (#181) where a mis-spelling was in the form validation language file.
Diffstat (limited to 'system/language')
-rw-r--r-- | system/language/english/form_validation_lang.php | 2 |
1 files changed, 1 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."; |