diff options
author | Nick Busey <nickabusey@gmail.com> | 2012-02-07 01:55:58 +0100 |
---|---|---|
committer | Nick Busey <nickabusey@gmail.com> | 2012-02-07 01:55:58 +0100 |
commit | c1931667cbc614a704f536beb882931af82241cd (patch) | |
tree | d38f22b603d4d1e179d539644ef5857f3d1c55e1 /system/libraries | |
parent | 98c347de9f62a3427170f9f73a692d159765e8cf (diff) |
Renaming equal_to_greater_than to greater_than_equal_to, equal_to_less_than to less_than_equal_to
Diffstat (limited to 'system/libraries')
-rw-r--r-- | system/libraries/Form_validation.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/system/libraries/Form_validation.php b/system/libraries/Form_validation.php index 1b2907a08..3ee3cf9df 100644 --- a/system/libraries/Form_validation.php +++ b/system/libraries/Form_validation.php @@ -1139,7 +1139,7 @@ class CI_Form_validation { * @param string * @return bool */ - function equal_to_greater_than($str, $min) + function greater_than_equal_to($str, $min) { if ( ! is_numeric($str)) { @@ -1174,7 +1174,7 @@ class CI_Form_validation { * @param string * @return bool */ - function equal_to_less_than($str, $max) + function less_than_equal_to($str, $max) { if ( ! is_numeric($str)) { |