From: justauser Date: Thu, 27 Jun 2013 16:01:57 +0000 (-0400) Subject: change for HOOK_QUERY_HEADLINES. See example for details. X-Git-Tag: 1.9~61^2~7 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=0708046b4f0c3f430258f561dbc1a51ed5d92888;p=tt-rss.git change for HOOK_QUERY_HEADLINES. See example for details. --- diff --git a/classes/feeds.php b/classes/feeds.php index 85276a4b..409824f9 100644 --- a/classes/feeds.php +++ b/classes/feeds.php @@ -363,15 +363,12 @@ class Feeds extends Handler_Protected { $date_entered_fmt = T_sprintf("Imported at %s", make_local_datetime($line["date_entered"], false)); -# if (get_pref('SHOW_CONTENT_PREVIEW') ) { -# if(isset($line["modified_preview"])) -# $content_preview = strip_tags($line["content_preview"]); -# else -# $content_preview = truncate_string(strip_tags($line["content_preview"]), -# 250); - if (get_pref('SHOW_CONTENT_PREVIEW')) { - $content_preview = " — " . truncate_string(strip_tags($line["content_preview"]), - 250); + if (get_pref('SHOW_CONTENT_PREVIEW') ) { + if(isset($line["modified_preview"])) + $content_preview = " — " . strip_tags($line["content_preview"]); + else + $content_preview = " — " . truncate_string(strip_tags($line["content_preview"]), + 250); } $score = $line["score"];