From c9efd838a930976b8e2dd87ad6ce065d037bf6a0 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Tue, 1 Sep 2009 14:30:51 +0400 Subject: properly allow article to be expanded in CDM mode when article excerpt is blank --- functions.php | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/functions.php b/functions.php index 044b0162a..3249a5d7b 100644 --- a/functions.php +++ b/functions.php @@ -5229,7 +5229,14 @@ print "
"; - print truncate_string(strip_tags($line["content_preview"]), 100); + + $content_preview = trim(truncate_string(strip_tags($line["content_preview"]), 100)); + + if (strlen($content_preview) != 0) { + print $content_preview; + } else { + print __('Click to expand article'); + } print "
"; } -- cgit v1.2.3