summaryrefslogtreecommitdiff
path: root/classes/handler
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 /classes/handler
parentaeb1abedb2cb5051c2a94e287f114bdbdaa467ff (diff)
move counter cache to a separate class
fix references to get_article_tags
Diffstat (limited to 'classes/handler')
-rw-r--r--classes/handler/public.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/handler/public.php b/classes/handler/public.php
index ec0c0fc60..d525bc54c 100644
--- a/classes/handler/public.php
+++ b/classes/handler/public.php
@@ -227,7 +227,7 @@ class Handler_Public extends Handler {
if ($line['note']) $article['note'] = $line['note'];
if ($article['author']) $article['author'] = $line['author'];
- $tags = get_article_tags($line["id"], $owner_uid);
+ $tags = Article::get_article_tags($line["id"], $owner_uid);
if (count($tags) > 0) {
$article['tags'] = array();