1
0
mirror of https://github.com/moparisthebest/wallabag synced 2024-08-13 16:54:00 -04:00

[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

View File

@ -443,12 +443,16 @@ class Poche
# flattr checking # flattr checking
$flattr = new FlattrItem(); $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( $tpl_vars = array(
'entry' => $entry, 'entry' => $entry,
'content' => $content, 'content' => $content,
'flattr' => $flattr 'flattr' => $flattr,
'tags' => $tags
); );
} }
else { else {