diff options
author | Andrey Andreev <narf@devilix.net> | 2015-01-20 14:40:27 +0100 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2015-01-20 14:40:27 +0100 |
commit | 2c245616a7bc89e842b4f39693751c3d28c034f2 (patch) | |
tree | fbd69f18cf3e525860dfb6ae2c672b1cdcce7102 /user_guide_src/source/installation | |
parent | 0da50123c196ca0f342cac44b76f889a6f8a96b9 (diff) |
Deprecates form_prep() in favor of html_escape() (again).
Related: issue #1953, which was the reason for the reverted commit,
but was wrongly interpreted and that shouldn't have happened.
Close #2477
Diffstat (limited to 'user_guide_src/source/installation')
-rw-r--r-- | user_guide_src/source/installation/upgrade_300.rst | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/user_guide_src/source/installation/upgrade_300.rst b/user_guide_src/source/installation/upgrade_300.rst index 3e6db390e..c62b28fa3 100644 --- a/user_guide_src/source/installation/upgrade_300.rst +++ b/user_guide_src/source/installation/upgrade_300.rst @@ -527,6 +527,18 @@ scheduled for removal in CodeIgniter 3.1+. .. note:: This function is still available, but you're strongly encouraged to remove its usage sooner rather than later. +Form helper form_prep() +======================= + +:doc:`Form Helper <../helpers/form_helper>` function :func:`form_prep()` +is now just an alias for :doc:`common function <common_functions>` +:func:`html_escape()`. It is deprecated and will be removed in the future. + +Please use :func:`html_escape()` instead. + +.. note:: This function is still available, but you're strongly encouraged + to remove its usage sooner rather than later. + Email helper functions ====================== |