mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 20:55:55 +00:00
change for HOOK_QUERY_HEADLINES. See example for details.
This commit is contained in:
@@ -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"];
|
||||
|
||||
Reference in New Issue
Block a user