This commit is contained in:
Thomas Citharel
2014-12-26 10:27:30 +01:00

View File

@ -405,8 +405,11 @@ class Poche
} }
# flattr checking # flattr checking
$flattr = new FlattrItem(); $flattr = NULL;
$flattr->checkItem($entry['url'], $entry['id']); if (FLATTR) {
$flattr = new FlattrItem();
$flattr->checkItem($entry['url'], $entry['id']);
}
# tags # tags
$tags = $this->store->retrieveTagsByEntry($entry['id']); $tags = $this->store->retrieveTagsByEntry($entry['id']);