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

move counter cache to a separate class

fix references to get_article_tags
This commit is contained in:
Andrew Dolgov
2017-05-04 15:22:57 +03:00
parent aeb1abedb2
commit 2ed0d6c433
8 changed files with 38 additions and 36 deletions

View File

@@ -686,7 +686,7 @@
$article_labels = get_article_labels($base_entry_id, $owner_uid);
$entry_language = db_fetch_result($result, 0, "lang");
$existing_tags = get_article_tags($base_entry_id, $owner_uid);
$existing_tags = Article::get_article_tags($base_entry_id, $owner_uid);
$entry_tags = array_unique(array_merge($entry_tags, $existing_tags));
} else {