mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2026-02-10 16:01:33 +00:00
Changed the implementation of HOOK_QUERY_HEADLINES to deal with issue Fox raised
This commit is contained in:
@@ -95,7 +95,7 @@ class Pref_Filters extends Handler_Protected {
|
||||
|
||||
print "<div class=\"filterTestHolder\">";
|
||||
print "<table width=\"100%\" cellspacing=\"0\" id=\"prefErrorFeedList\">";
|
||||
|
||||
$line["content_preview"] = strip_tags($line["content_preview"]), 100, '...');
|
||||
while ($line = $this->dbh->fetch_assoc($result)) {
|
||||
foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_QUERY_HEADLINES) as $p) {
|
||||
$line = $p->hook_query_headlines($line, 100);
|
||||
@@ -104,10 +104,7 @@ class Pref_Filters extends Handler_Protected {
|
||||
$entry_timestamp = strtotime($line["updated"]);
|
||||
$entry_tags = get_article_tags($line["id"], $_SESSION["uid"]);
|
||||
|
||||
if(isset($line["modified_preview"]))
|
||||
$content_preview = strip_tags($line["content_preview"]);
|
||||
else
|
||||
$content_preview = truncate_string(strip_tags($line["content_preview"]), 100, '...');
|
||||
$content_preview = $line["content_preview"];
|
||||
|
||||
if ($line["feed_title"])
|
||||
$feed_title = $line["feed_title"];
|
||||
@@ -123,7 +120,7 @@ class Pref_Filters extends Handler_Protected {
|
||||
print " (";
|
||||
print "<b>" . $feed_title . "</b>";
|
||||
print "): ";
|
||||
print "<span class=\"insensitive\">" . $content_preview . "</span>";
|
||||
print "<span class=\"insensitive\">" . $line["content_preview"] . "</span>";
|
||||
print " " . mb_substr($line["date_entered"], 0, 16);
|
||||
|
||||
print "</td></tr>";
|
||||
|
||||
Reference in New Issue
Block a user