From ee8a712b10b517a90f03ac858312a82e0fb5d492 Mon Sep 17 00:00:00 2001 From: Phil Sturgeon Date: Thu, 17 Mar 2011 09:48:51 +0000 Subject: Added form_validation_lang entries for decimal, greater_than, less_than. --- system/language/english/form_validation_lang.php | 3 +++ user_guide/changelog.html | 5 +++++ 2 files changed, 8 insertions(+) diff --git a/system/language/english/form_validation_lang.php b/system/language/english/form_validation_lang.php index b01885091..3f2409007 100644 --- a/system/language/english/form_validation_lang.php +++ b/system/language/english/form_validation_lang.php @@ -19,6 +19,9 @@ $lang['regex_match'] = "The %s field is not in the correct format."; $lang['matches'] = "The %s field does not match the %s field."; $lang['is_natural'] = "The %s field must contain only positive numbers."; $lang['is_natural_no_zero'] = "The %s field must contain a number greater than zero."; +$lang['decimal'] = "The %s field must contain a decimal number."; +$lang['less_than'] = "The %s field must contain a number less than %s."; +$lang['greater_than'] = "The %s field must contain a number greater than %s."; /* End of file form_validation_lang.php */ diff --git a/user_guide/changelog.html b/user_guide/changelog.html index 003daf338..82cd3b944 100644 --- a/user_guide/changelog.html +++ b/user_guide/changelog.html @@ -71,6 +71,11 @@ Hg Tag: n/a

+

Bug fixes for 2.0.2

+ +

Version 2.0.1

Release Date: March, 15, 2011
Hg Tag: v2.0.1

-- cgit v1.2.3-24-g4f1b