diff options
author | Andrey Andreev <narf@devilix.net> | 2014-02-26 18:04:36 +0100 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2014-02-26 18:04:36 +0100 |
commit | 59f042652eb19db118ae5009c0e4a8dbf154b420 (patch) | |
tree | c83f1f75dc3753156f93fac1c9af7279faff4ae3 /system | |
parent | 58e1c00275ecbe40c1fb27271650e75f80f0cf1d (diff) |
Deprecate HTML helpers nbs(), br()
Diffstat (limited to 'system')
-rw-r--r-- | system/helpers/html_helper.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/system/helpers/html_helper.php b/system/helpers/html_helper.php index 8246cbd2b..e229d796e 100644 --- a/system/helpers/html_helper.php +++ b/system/helpers/html_helper.php @@ -371,6 +371,7 @@ 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 */ @@ -387,6 +388,7 @@ 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 */ |