aboutsummaryrefslogtreecommitdiffhomepage
path: root/inc
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas.loeuillet@gmail.com>2013-12-06 13:02:38 +0100
committerNicolas LÅ“uillet <nicolas.loeuillet@gmail.com>2013-12-06 13:02:38 +0100
commit7b171c73400ff2c0b8f3634e35d186b22176759b (patch)
tree273f1730ecb957e21531588826b69b04963ebaee /inc
parent5bea1a4d310e468d6ea1b71de36bdb4a53b8c57a (diff)
downloadwallabag-7b171c73400ff2c0b8f3634e35d186b22176759b.tar.gz
wallabag-7b171c73400ff2c0b8f3634e35d186b22176759b.tar.zst
wallabag-7b171c73400ff2c0b8f3634e35d186b22176759b.zip
[add] send tags to article view
Diffstat (limited to 'inc')
-rw-r--r--inc/poche/Poche.class.php12
1 files changed, 8 insertions, 4 deletions
diff --git a/inc/poche/Poche.class.php b/inc/poche/Poche.class.php
index d45d0c40..c9fb6382 100644
--- a/inc/poche/Poche.class.php
+++ b/inc/poche/Poche.class.php
@@ -443,12 +443,16 @@ class Poche
443 443
444 # flattr checking 444 # flattr checking
445 $flattr = new FlattrItem(); 445 $flattr = new FlattrItem();
446 $flattr->checkItem($entry['url'],$entry['id']); 446 $flattr->checkItem($entry['url'], $entry['id']);
447
448 # tags
449 $tags = $this->store->retrieveTagsByEntry($entry['id']);
447 450
448 $tpl_vars = array( 451 $tpl_vars = array(
449 'entry' => $entry, 452 'entry' => $entry,
450 'content' => $content, 453 'content' => $content,
451 'flattr' => $flattr 454 'flattr' => $flattr,
455 'tags' => $tags
452 ); 456 );
453 } 457 }
454 else { 458 else {