[add] send tags to article view

This commit is contained in:
Nicolas Lœuillet 2013-12-06 13:02:38 +01:00
parent 5bea1a4d31
commit 7b171c7340
1 changed files with 8 additions and 4 deletions

View File

@ -443,12 +443,16 @@ class Poche
# flattr checking
$flattr = new FlattrItem();
$flattr->checkItem($entry['url'],$entry['id']);
$flattr->checkItem($entry['url'], $entry['id']);
# tags
$tags = $this->store->retrieveTagsByEntry($entry['id']);
$tpl_vars = array(
'entry' => $entry,
'content' => $content,
'flattr' => $flattr
'entry' => $entry,
'content' => $content,
'flattr' => $flattr,
'tags' => $tags
);
}
else {