diff options
author | Alan Jenkins <alan.christopher.jenkins@gmail.com> | 2013-01-03 12:04:27 +0100 |
---|---|---|
committer | Alan Jenkins <alan.christopher.jenkins@gmail.com> | 2013-01-03 12:04:27 +0100 |
commit | 93fa7e1cb720ff367b2d6326ae3c57802192cbf8 (patch) | |
tree | 86fcbf0774a26063952b9c9ee76c8c5a180e0e95 /user_guide_src | |
parent | 802f33dc67a3f18f5aee8854ac1635fe1a8e939d (diff) |
doc: fix table markup in previous commit
"These "border lines" need to have a length higher or equal to the
longest line in the table that would be generated, so you'll have
to update them as well." - narfbg
Diffstat (limited to 'user_guide_src')
-rw-r--r-- | user_guide_src/source/libraries/form_validation.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/user_guide_src/source/libraries/form_validation.rst b/user_guide_src/source/libraries/form_validation.rst index bab61f124..ce1695d62 100644 --- a/user_guide_src/source/libraries/form_validation.rst +++ b/user_guide_src/source/libraries/form_validation.rst @@ -911,15 +911,15 @@ Prepping Reference The following is a list of all the prepping methods that are available to use: -==================== ========= =================================================================================================== +==================== ========= ======================================================================================================= Name Parameter Description -==================== ========= =================================================================================================== +==================== ========= ======================================================================================================= **xss_clean** No Runs the data through the XSS filtering method, described in the :doc:`Security Class <security>` 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 permits one parameter, like ``trim()``, ``htmlspecialchars()``, ``urldecode()``, |