summaryrefslogtreecommitdiffstats
path: root/user_guide_src/source
diff options
context:
space:
mode:
authorJoseph Wensley <jwensley2@gmail.com>2011-10-06 01:54:11 +0200
committerJoseph Wensley <jwensley2@gmail.com>2011-10-06 01:54:11 +0200
commit34acc44043b0dc9d4ae9fe12b5c54f3bb35da9aa (patch)
treed8ff65639988cd36ef467a14141344399b016672 /user_guide_src/source
parent9838c16c375be41d6c89fc66d922f88506797bd4 (diff)
format Prepping Reference table
Diffstat (limited to 'user_guide_src/source')
-rw-r--r--user_guide_src/source/libraries/form_validation.rst29
1 files changed, 9 insertions, 20 deletions
diff --git a/user_guide_src/source/libraries/form_validation.rst b/user_guide_src/source/libraries/form_validation.rst
index e5f682442..0dbb44616 100644
--- a/user_guide_src/source/libraries/form_validation.rst
+++ b/user_guide_src/source/libraries/form_validation.rst
@@ -883,26 +883,15 @@ Prepping Reference
The following is a list of all the prepping functions that are available
to use:
-Name
-Parameter
-Description
-**xss_clean**
-No
-Runs the data through the XSS filtering function, described in the
-:doc:`Input Class <input>` page.
-**prep_for_form**
-No
-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.
+==================== ========= ===================================================================================================
+Name Parameter Description
+============================== ===================================================================================================
+**xss_clean** No Runs the data through the XSS filtering function, described in the :doc:`Input Class <input>` page.
+**prep_for_form** No 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 permit one
parameter, like trim, htmlspecialchars, urldecode, etc.