diff options
author | Andrey Andreev <narf@devilix.net> | 2016-03-12 16:21:55 +0100 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2016-03-12 16:21:55 +0100 |
commit | 4f555079a6d85abd11403c72b9dbaa8823dc2e6d (patch) | |
tree | dff3ea0218b0d3c180d2bdef6dff51d8123e7944 /user_guide_src/source/libraries | |
parent | b5a5d76d0733780c846963592ff813f867beaf97 (diff) |
[ci skip] Deprecate prep_for_form() in Form_validation
Diffstat (limited to 'user_guide_src/source/libraries')
-rw-r--r-- | user_guide_src/source/libraries/form_validation.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/user_guide_src/source/libraries/form_validation.rst b/user_guide_src/source/libraries/form_validation.rst index 9189d082e..44adfd715 100644 --- a/user_guide_src/source/libraries/form_validation.rst +++ b/user_guide_src/source/libraries/form_validation.rst @@ -1007,14 +1007,14 @@ Prepping Reference The following is a list of all the prepping methods that are available to use: -==================== ========= ======================================================================================================= +==================== ========= ============================================================================================================== Name Parameter Description -==================== ========= ======================================================================================================= -**prep_for_form** No Converts special characters so that HTML data can be shown in a form field without breaking it. +==================== ========= ============================================================================================================== +**prep_for_form** No DEPRECATED: Converts special characters so that HTML data can be shown in a form field without breaking it. **prep_url** No Adds "\http://" to URLs if missing. **strip_image_tags** No Strips the HTML from image tags leaving the raw URL. **encode_php_tags** No Converts PHP tags to entities. -==================== ========= ======================================================================================================= +==================== ========= ============================================================================================================== .. note:: You can also use any native PHP functions that permits one parameter, like ``trim()``, ``htmlspecialchars()``, ``urldecode()``, |