summaryrefslogtreecommitdiffstats
path: root/system/helpers/text_helper.php
diff options
context:
space:
mode:
authorAndrey Andreev <narf@bofh.bg>2012-01-07 01:14:55 +0100
committerAndrey Andreev <narf@bofh.bg>2012-01-07 01:14:55 +0100
commitfc443553248af8ac0c1cbb635fe9cbb70fdf7b82 (patch)
tree197b1a11430f4d37cfcc8ba7e33d8aa87553c2aa /system/helpers/text_helper.php
parent4921fed6c17a54efd4fac0bed4d058463bd9b601 (diff)
Remove quotes around an integer value
Diffstat (limited to 'system/helpers/text_helper.php')
-rw-r--r--system/helpers/text_helper.php2
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))