summaryrefslogtreecommitdiff
path: root/classes/pref
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-11-29 13:54:30 +0400
committerAndrew Dolgov <[email protected]>2013-11-29 13:54:30 +0400
commitbf5bcb8e272feb19103d601d29f17cb9917e95c3 (patch)
treee9335b44187b28bd42fee08b709be39851b62d2d /classes/pref
parent25237aea4371cfa3096e525aed25c432ca067190 (diff)
queryFeedHeadlines: remove obsolete content_preview
Diffstat (limited to 'classes/pref')
-rw-r--r--classes/pref/filters.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/pref/filters.php b/classes/pref/filters.php
index 87e63cc2d..43da6d04d 100644
--- a/classes/pref/filters.php
+++ b/classes/pref/filters.php
@@ -97,7 +97,7 @@ class Pref_Filters extends Handler_Protected {
print "<table width=\"100%\" cellspacing=\"0\" id=\"prefErrorFeedList\">";
while ($line = $this->dbh->fetch_assoc($result)) {
- $line["content_preview"] = truncate_string(strip_tags($line["content_preview"]), 100, '...');
+ $line["content_preview"] = truncate_string(strip_tags($line["content"]), 100, '...');
foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_QUERY_HEADLINES) as $p) {
$line = $p->hook_query_headlines($line, 100);