diff options
author | Sajan Parikh <sajan@noppix.com> | 2013-02-02 15:05:38 +0100 |
---|---|---|
committer | Sajan Parikh <sajan@noppix.com> | 2013-02-02 15:05:38 +0100 |
commit | 7c162887a8146622e8fe126f21d9b8b615f91753 (patch) | |
tree | b87c4a150fd08e439581accf78bdab5377c0d564 /user_guide_src/source/libraries | |
parent | 2d1608a6325d55ab31c55c27c31052c2daa76e46 (diff) |
Fixed documentation.
Signed-off-by: Sajan Parikh <sajan@noppix.com>
Diffstat (limited to 'user_guide_src/source/libraries')
-rw-r--r-- | user_guide_src/source/libraries/form_validation.rst | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/user_guide_src/source/libraries/form_validation.rst b/user_guide_src/source/libraries/form_validation.rst index ae7859aa3..51205afa4 100644 --- a/user_guide_src/source/libraries/form_validation.rst +++ b/user_guide_src/source/libraries/form_validation.rst @@ -877,8 +877,10 @@ Rule Parameter Description **less_than_equal_to** Yes Returns FALSE if the form element is greater than the parameter value, less_than_equal_to[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. -**alpha_dash** No Returns FALSE if the form element contains anything other than alpha-numeric characters, +**alpha_numeric** No Returns FALSE if the form element contains anything other than alpha-numeric characters. +**alpha_numeric_spaces** No Returns FALSE if the form element contains anything other than alpha-numeric characters + or spaces. Should be used after trim to avoid spaces at the beginning or end. +**alpha_dash** No Returns FALSE if the form element contains anything other than alpha-numeric characters, underscores or dashes. **numeric** No Returns FALSE if the form element contains anything other than numeric characters. **integer** No Returns FALSE if the form element contains anything other than an integer. |