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
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user