diff options
author | Andrey Andreev <narf@devilix.net> | 2016-12-01 14:18:46 +0100 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2016-12-01 14:18:46 +0100 |
commit | 5e47aa3d87b44627bd79850536bfacd8d39a92a6 (patch) | |
tree | da4c5f9470566add053b96b08e782c55c1f55659 /system/helpers | |
parent | 0c84ef9a33d18d758e36447fd18a240a458ae2bc (diff) |
Remove previously deprecated HTML helper functions br(), nbs()
Diffstat (limited to 'system/helpers')
-rw-r--r-- | system/helpers/html_helper.php | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/system/helpers/html_helper.php b/system/helpers/html_helper.php index 696f0eee2..22ef39c2e 100644 --- a/system/helpers/html_helper.php +++ b/system/helpers/html_helper.php @@ -389,37 +389,3 @@ if ( ! function_exists('meta')) return $str; } } - -// ------------------------------------------------------------------------ - -if ( ! function_exists('br')) -{ - /** - * Generates HTML BR tags based on number supplied - * - * @deprecated 3.0.0 Use str_repeat() instead - * @param int $count Number of times to repeat the tag - * @return string - */ - function br($count = 1) - { - return str_repeat('<br />', $count); - } -} - -// ------------------------------------------------------------------------ - -if ( ! function_exists('nbs')) -{ - /** - * Generates non-breaking space entities based on number supplied - * - * @deprecated 3.0.0 Use str_repeat() instead - * @param int - * @return string - */ - function nbs($num = 1) - { - return str_repeat(' ', $num); - } -} |