diff options
Diffstat (limited to 'inc')
-rw-r--r-- | inc/poche/Poche.class.php | 12 |
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 { |