From 6711d0cebfa3e76d26fffd8401f4d844582fdea8 Mon Sep 17 00:00:00 2001 From: messju Date: Fri, 19 Dec 2003 15:22:55 +0000 Subject: [PATCH] removed tabs --- libs/plugins/modifier.truncate.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libs/plugins/modifier.truncate.php b/libs/plugins/modifier.truncate.php index c82b14a3..15a26ba9 100644 --- a/libs/plugins/modifier.truncate.php +++ b/libs/plugins/modifier.truncate.php @@ -12,7 +12,7 @@ * Type: modifier
* Name: truncate
* Purpose: Truncate a string to a certain length if necessary, - * optionally splitting in the middle of a word, and + * optionally splitting in the middle of a word, and * appending the $etc string. * @link http://smarty.php.net/manual/en/language.modifier.truncate.php * truncate (Smarty online manual) @@ -29,9 +29,9 @@ function smarty_modifier_truncate($string, $length = 80, $etc = '...', return ''; if (strlen($string) > $length) { - $length -= strlen($etc); + $length -= strlen($etc); 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; } else