diff options
author | Andrey Andreev <narf@devilix.net> | 2017-01-06 11:39:20 +0100 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2017-01-06 11:39:20 +0100 |
commit | 7d80b4d3c48de6234ef617c5545418eb031d52c6 (patch) | |
tree | eb22f756d6d805fa355a02058f7fc5d84405d9c8 | |
parent | 27a462945ecbaadf90dfb64c6735df8333176bb7 (diff) |
[ci skip] Correct FV docs on valid_ip accepting a param
-rw-r--r-- | user_guide_src/source/libraries/form_validation.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/user_guide_src/source/libraries/form_validation.rst b/user_guide_src/source/libraries/form_validation.rst index 7792369b2..88cda1686 100644 --- a/user_guide_src/source/libraries/form_validation.rst +++ b/user_guide_src/source/libraries/form_validation.rst @@ -985,7 +985,7 @@ Rule Parameter Description **valid_url** No Returns FALSE if the form element does not contain a valid URL. **valid_email** No Returns FALSE if the form element does not contain a valid email address. **valid_emails** No Returns FALSE if any value provided in a comma separated list is not a valid email. -**valid_ip** No Returns FALSE if the supplied IP is not valid. +**valid_ip** Yes Returns FALSE if the supplied IP address is not valid. Accepts an optional parameter of 'ipv4' or 'ipv6' to specify an IP format. **valid_base64** No Returns FALSE if the supplied string contains anything other than valid Base64 characters. ========================= ========== ============================================================================================= ======================= |