summaryrefslogtreecommitdiffstats
path: root/system/language
diff options
context:
space:
mode:
authorGreg Aker <greg@gregaker.net>2011-08-20 21:41:51 +0200
committerGreg Aker <greg@gregaker.net>2011-08-20 21:41:51 +0200
commit54a8dcd55f15772acd0b2b39dd8edaa7f3bfcda8 (patch)
tree8068c197883c4ba232c39a32311b6d4270fcca1e /system/language
parent7ebf87e671b7ba552368f4c6069a8577b1501c3f (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.php2
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.";