removed tabs

This commit is contained in:
messju
2003-12-19 15:22:55 +00:00
parent cc87a960f4
commit 6711d0cebf

View File

@@ -31,7 +31,7 @@ function smarty_modifier_truncate($string, $length = 80, $etc = '...',
if (strlen($string) > $length) { if (strlen($string) > $length) {
$length -= strlen($etc); $length -= strlen($etc);
if (!$break_words) if (!$break_words)
$string = preg_replace('/\s+?(\S+)?$/', '', substr($string, 0, $length+1)); $string = preg_replace('/\s+?(\S+)?$/', '', substr($string, 0, $length+1));
return substr($string, 0, $length).$etc; return substr($string, 0, $length).$etc;
} else } else