From 8fd0c7173c2b984d0b4916e299d856647a4e389a Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Wed, 30 Nov 2005 12:09:22 +0100 Subject: [PATCH] headline: change cutoff length for content preview --- backend.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/backend.php b/backend.php index 788343e2..3fa36d5c 100644 --- a/backend.php +++ b/backend.php @@ -1150,7 +1150,8 @@ } if (get_pref($link, 'SHOW_CONTENT_PREVIEW')) { - $content_preview = truncate_string(strip_tags($line["content_preview"]), 101); + $content_preview = truncate_string(strip_tags($line["content_preview"]), + 60); } if ($omode != "xml") { -- 2.39.5