changed default value for $units to 7
diff --git a/system/helpers/date_helper.php b/system/helpers/date_helper.php
index 2ad287b..9eea025 100644
--- a/system/helpers/date_helper.php
+++ b/system/helpers/date_helper.php
@@ -164,7 +164,7 @@
  */
 if ( ! function_exists('timespan'))
 {
-	function timespan($seconds = 1, $time = '', $units = '')
+	function timespan($seconds = 1, $time = '', $units = 7)
 	{
 		$CI =& get_instance();
 		$CI->lang->load('date');
@@ -181,7 +181,7 @@
 
 		if ( ! is_numeric($units))
 		{
-			$units = 999;
+			$units = 7;
 		}
 
 		$seconds = ($time <= $seconds) ? 1 : $time - $seconds;