queryFeedHeadlines: remove obsolete content_preview
This commit is contained in:
parent
25237aea43
commit
bf5bcb8e27
5 changed files with 5 additions and 5 deletions
|
@ -642,7 +642,7 @@ class API extends Handler {
|
|||
$headlines = array();
|
||||
|
||||
while ($line = db_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, true);
|
||||
}
|
||||
|
|
|
@ -292,7 +292,7 @@ class Feeds extends Handler_Protected {
|
|||
$expand_cdm = get_pref('CDM_EXPANDED');
|
||||
|
||||
while ($line = $this->dbh->fetch_assoc($result)) {
|
||||
$line["content_preview"] = "— " . truncate_string(strip_tags($line["content_preview"]), 250);
|
||||
$line["content_preview"] = "— " . truncate_string(strip_tags($line["content"]), 250);
|
||||
|
||||
foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_QUERY_HEADLINES) as $p) {
|
||||
$line = $p->hook_query_headlines($line, 250, false);
|
||||
|
|
|
@ -91,7 +91,7 @@ class Handler_Public extends Handler {
|
|||
|
||||
$tpl->setVariable('SELF_URL', htmlspecialchars(get_self_url_prefix()), true);
|
||||
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);
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -2651,7 +2651,7 @@
|
|||
}
|
||||
|
||||
|
||||
$content_query_part = "content, content AS content_preview, ";
|
||||
$content_query_part = "content, ";
|
||||
|
||||
|
||||
if (is_numeric($feed)) {
|
||||
|
|
Loading…
Reference in a new issue