diff options
author | Andrey Andreev <narf@bofh.bg> | 2012-01-07 01:14:55 +0100 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2012-01-07 01:14:55 +0100 |
commit | fc443553248af8ac0c1cbb635fe9cbb70fdf7b82 (patch) | |
tree | 197b1a11430f4d37cfcc8ba7e33d8aa87553c2aa /system | |
parent | 4921fed6c17a54efd4fac0bed4d058463bd9b601 (diff) |
Remove quotes around an integer value
Diffstat (limited to 'system')
-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 562270f96..3a847f29b 100644 --- a/system/helpers/text_helper.php +++ b/system/helpers/text_helper.php @@ -408,7 +408,7 @@ if ( ! function_exists('convert_accented_characters')) */ if ( ! function_exists('word_wrap')) { - function word_wrap($str, $charlim = '76') + function word_wrap($str, $charlim = 76) { // Set the character limit if ( ! is_numeric($charlim)) |