diff options
author | Andrey Andreev <narf@devilix.net> | 2013-09-16 02:35:14 +0200 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2013-09-16 02:35:14 +0200 |
commit | f1ae9d2c82917fe3cb730cb86785e10591800d95 (patch) | |
tree | 1ae9c4d356ce960fb2ef6097f07aa3019e522a2c | |
parent | 13c818ee2f7424050cf363dceac7512bf9f9f943 (diff) | |
parent | 3914c0eff4414dc8997e6866276c5eefe6103ff3 (diff) |
Merge pull request #2645 from AdwinTrave/develop
Adding missing reference to min_length in rules reference in documentation for form validation
-rw-r--r-- | user_guide_src/source/libraries/form_validation.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/user_guide_src/source/libraries/form_validation.rst b/user_guide_src/source/libraries/form_validation.rst index 032cff23b..8534175bb 100644 --- a/user_guide_src/source/libraries/form_validation.rst +++ b/user_guide_src/source/libraries/form_validation.rst @@ -866,6 +866,7 @@ Rule Parameter Description **is_unique** Yes Returns FALSE if the form element is not unique to the table and field name in the is_unique[table.field] parameter. Note: This rule requires :doc:`Query Builder <../database/query_builder>` to be enabled in order to work. +**min_length** Yes Returns FALSE if the form element is shorter then the parameter value. min_length[3] **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 or equal to the parameter value or not greater_than[8] |