mirror of
https://github.com/moparisthebest/wallabag
synced 2024-11-23 17:42:15 -05:00
[add] send tags to article view
This commit is contained in:
parent
5bea1a4d31
commit
7b171c7340
@ -445,10 +445,14 @@ class Poche
|
|||||||
$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 {
|
||||||
|
Loading…
Reference in New Issue
Block a user