diff options
author | Thomas Citharel <thomas.citharet@gmail.com> | 2013-09-27 11:11:45 +0200 |
---|---|---|
committer | Thomas Citharel <thomas.citharet@gmail.com> | 2013-09-27 11:11:45 +0200 |
commit | 4e5b04113d923b54206436c74ce1fa8649854046 (patch) | |
tree | 531ad424baafb102baa4c4fa0bdf639dddf669a5 /inc/poche | |
parent | be2b9055b9019fccc9d2e4678494d0ffcd5f5f12 (diff) | |
download | wallabag-4e5b04113d923b54206436c74ce1fa8649854046.tar.gz wallabag-4e5b04113d923b54206436c74ce1fa8649854046.tar.zst wallabag-4e5b04113d923b54206436c74ce1fa8649854046.zip |
Changed Flattr Caching System
From md5(url) to the ID of an article. Easier and faster.
Diffstat (limited to 'inc/poche')
-rw-r--r-- | inc/poche/Poche.class.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/poche/Poche.class.php b/inc/poche/Poche.class.php index 561de808..6907e649 100644 --- a/inc/poche/Poche.class.php +++ b/inc/poche/Poche.class.php | |||
@@ -385,7 +385,7 @@ class Poche | |||
385 | 385 | ||
386 | # flattr checking | 386 | # flattr checking |
387 | $flattr = new FlattrItem(); | 387 | $flattr = new FlattrItem(); |
388 | $flattr->checkItem($entry['url']); | 388 | $flattr->checkItem($entry['url'],$entry['id']); |
389 | 389 | ||
390 | $tpl_vars = array( | 390 | $tpl_vars = array( |
391 | 'entry' => $entry, | 391 | 'entry' => $entry, |