diff options
author | vlakoff <vlakoff@gmail.com> | 2016-12-15 23:17:16 +0100 |
---|---|---|
committer | vlakoff <vlakoff@gmail.com> | 2016-12-15 23:17:16 +0100 |
commit | 8d369209b9c1db8cf3fe06bba54441ca84a8d6e4 (patch) | |
tree | 6bc3cba5bef66a092cef1737866b9664ec0da6d3 /system/helpers | |
parent | 9f20c8011a80d74edb740081cd96388bb6a967e6 (diff) |
Small code simplification in character_limiter()
Diffstat (limited to 'system/helpers')
-rw-r--r-- | system/helpers/text_helper.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/helpers/text_helper.php b/system/helpers/text_helper.php index 4f9210f2d..e54ed04e1 100644 --- a/system/helpers/text_helper.php +++ b/system/helpers/text_helper.php @@ -102,7 +102,7 @@ if ( ! function_exists('character_limiter')) } // a bit complicated, but faster than preg_replace with \s+ - $str = preg_replace('/ {2,}/', ' ', str_replace(array("\r", "\n", "\t", "\x0B", "\x0C"), ' ', $str)); + $str = preg_replace('/ {2,}/', ' ', str_replace(array("\r", "\n", "\t", "\v", "\f"), ' ', $str)); if (mb_strlen($str) <= $n) { |