summaryrefslogtreecommitdiffstats
path: root/user_guide_src/source/libraries/form_validation.rst
diff options
context:
space:
mode:
authorNick Busey <nickabusey@gmail.com>2012-02-07 01:55:58 +0100
committerNick Busey <nickabusey@gmail.com>2012-02-07 01:55:58 +0100
commitc1931667cbc614a704f536beb882931af82241cd (patch)
treed38f22b603d4d1e179d539644ef5857f3d1c55e1 /user_guide_src/source/libraries/form_validation.rst
parent98c347de9f62a3427170f9f73a692d159765e8cf (diff)
Renaming equal_to_greater_than to greater_than_equal_to, equal_to_less_than to less_than_equal_to
Diffstat (limited to 'user_guide_src/source/libraries/form_validation.rst')
-rw-r--r--user_guide_src/source/libraries/form_validation.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/user_guide_src/source/libraries/form_validation.rst b/user_guide_src/source/libraries/form_validation.rst
index 185850b5a..0ca6e767b 100644
--- a/user_guide_src/source/libraries/form_validation.rst
+++ b/user_guide_src/source/libraries/form_validation.rst
@@ -833,10 +833,10 @@ Rule Parameter Description
**max_length** Yes Returns FALSE if the form element is longer then the parameter value. max_length[12]
**exact_length** Yes Returns FALSE if the form element is not exactly the parameter value. exact_length[8]
**greater_than** Yes Returns FALSE if the form element is less than the parameter value or not numeric. greater_than[8]
-**equal_to_greater_than** Yes Returns FALSE if the form element is not equal to or less than the parameter value, greater_than[8]
+**greater_than_equal_to** Yes Returns FALSE if the form element is not equal to or less than the parameter value, greater_than[8]
or not numeric.
**less_than** Yes Returns FALSE if the form element is greater than the parameter value or not numeric. less_than[8]
-**equal_to_less_than** Yes Returns FALSE if the form element is not equal to or greater than the parameter value, less_than[8]
+**less_than_equal_to** Yes Returns FALSE if the form element is not equal to or greater than the parameter value, less_than[8]
or not numeric.
**alpha** No Returns FALSE if the form element contains anything other than alphabetical characters.
**alpha_numeric** No Returns FALSE if the form element contains anything other than alpha-numeric characters.