summaryrefslogtreecommitdiff
path: root/include/rssfuncs.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2017-05-04 15:22:57 +0300
committerAndrew Dolgov <[email protected]>2017-05-04 15:22:57 +0300
commit2ed0d6c433c9ef5a6b9137725030f64b4b38392e (patch)
tree1ce20d942027d0b8d3d9b90bbd16fad631e760ce /include/rssfuncs.php
parentaeb1abedb2cb5051c2a94e287f114bdbdaa467ff (diff)
move counter cache to a separate class
fix references to get_article_tags
Diffstat (limited to 'include/rssfuncs.php')
-rw-r--r--include/rssfuncs.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/rssfuncs.php b/include/rssfuncs.php
index bb8127547..a7d30d674 100644
--- a/include/rssfuncs.php
+++ b/include/rssfuncs.php
@@ -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 {