Remove quotes around an integer value
diff --git a/system/helpers/text_helper.php b/system/helpers/text_helper.php
index 562270f..3a847f2 100644
--- a/system/helpers/text_helper.php
+++ b/system/helpers/text_helper.php
@@ -408,7 +408,7 @@
  */
 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))