1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 20:55:55 +00:00

make tag cache processing faster in cdm

This commit is contained in:
Andrew Dolgov
2013-05-02 10:09:01 +04:00
parent ea18cceaca
commit f8a25082b3
2 changed files with 6 additions and 5 deletions

View File

@@ -514,8 +514,10 @@ class Feeds extends Handler_Protected {
} else {
$line["tags"] = get_article_tags($id, $_SESSION["uid"], $line["tag_cache"]);
unset($line["tag_cache"]);
if ($line["tag_cache"])
$tags = explode(",", $line["tag_cache"]);
else
$tags = false;
$line["content"] = sanitize($line["content_preview"],
sql_bool_to_bool($line['hide_images']), false, $entry_site_url);
@@ -682,7 +684,7 @@ class Feeds extends Handler_Protected {
$reply['content'] .= $p->hook_article_left_button($line);
}
$tags_str = format_tags_string($line["tags"], $id);
$tags_str = format_tags_string($tags, $id);
$reply['content'] .= "<img src='images/tag.png' alt='Tags' title='Tags'>
<span id=\"ATSTR-$id\">$tags_str</span>