mirror of
https://github.com/smarty-php/smarty.git
synced 2025-08-05 02:44:27 +02:00
removed tabs
This commit is contained in:
@@ -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
|
||||||
|
Reference in New Issue
Block a user