diff options
author | Andrey Andreev <narf@bofh.bg> | 2012-11-08 21:01:33 +0100 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2012-11-08 21:01:33 +0100 |
commit | f7c39d6a123a73d90e4e9ebca2c66ed75731ab32 (patch) | |
tree | 0c5d666b33dd535cc13f4378825d2735e7ffa4f6 /system | |
parent | 53b8ef524529e6ca9f32ad49d36c5140df84feb0 (diff) |
Deprecate String helper trim_slashes()
trim(, '/') is even shorter ...
Diffstat (limited to 'system')
-rw-r--r-- | system/helpers/string_helper.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/system/helpers/string_helper.php b/system/helpers/string_helper.php index c895d5767..5177a7e59 100644 --- a/system/helpers/string_helper.php +++ b/system/helpers/string_helper.php @@ -51,6 +51,9 @@ if ( ! function_exists('trim_slashes')) * * this/that/theother * + * @todo Remove in version 3.1+. + * @deprecated 3.0.0 This is just an alias for PHP's native trim() + * * @param string * @return string */ |