diff options
author | Andrey Andreev <narf@devilix.net> | 2016-12-01 14:33:42 +0100 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2016-12-01 14:33:42 +0100 |
commit | 37c4cc599698da0634d620665491fc27e9a36beb (patch) | |
tree | 28268a118a0492ade95be64ea3ec7237ee738244 /system/helpers | |
parent | 172f949370bb1498789c7d897fdaa4073388ebd5 (diff) |
Remove previously deprecated Form Helper function form_prep()
Diffstat (limited to 'system/helpers')
-rw-r--r-- | system/helpers/form_helper.php | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/system/helpers/form_helper.php b/system/helpers/form_helper.php index aa7379f77..9756437ae 100644 --- a/system/helpers/form_helper.php +++ b/system/helpers/form_helper.php @@ -653,25 +653,6 @@ if ( ! function_exists('form_close')) // ------------------------------------------------------------------------ -if ( ! function_exists('form_prep')) -{ - /** - * Form Prep - * - * Formats text so that it can be safely placed in a form field in the event it has HTML tags. - * - * @deprecated 3.0.0 An alias for html_escape() - * @param string|string[] $str Value to escape - * @return string|string[] Escaped values - */ - function form_prep($str) - { - return html_escape($str, TRUE); - } -} - -// ------------------------------------------------------------------------ - if ( ! function_exists('set_value')) { /** |