diff options
author | nicosomb <nicolas@loeuillet.org> | 2013-04-17 15:11:57 +0200 |
---|---|---|
committer | nicosomb <nicolas@loeuillet.org> | 2013-04-17 15:11:57 +0200 |
commit | 1c182b6c9d74875054dc8efe75564ceab1bc1abe (patch) | |
tree | 97ab86be512a518ec3fac8d629211bb666741004 /view.php | |
parent | 4456315b217f4eb253fc4403e43cdcb0012356e6 (diff) | |
download | wallabag-1c182b6c9d74875054dc8efe75564ceab1bc1abe.tar.gz wallabag-1c182b6c9d74875054dc8efe75564ceab1bc1abe.tar.zst wallabag-1c182b6c9d74875054dc8efe75564ceab1bc1abe.zip |
téléchargement des images d'un article
Diffstat (limited to 'view.php')
-rwxr-xr-x | view.php | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -20,7 +20,7 @@ if(!empty($id)) { | |||
20 | $tpl->assign('id', $entry[0]['id']); | 20 | $tpl->assign('id', $entry[0]['id']); |
21 | $tpl->assign('url', $entry[0]['url']); | 21 | $tpl->assign('url', $entry[0]['url']); |
22 | $tpl->assign('title', $entry[0]['title']); | 22 | $tpl->assign('title', $entry[0]['title']); |
23 | $tpl->assign('content', $entry[0]['content']); | 23 | $tpl->assign('content', gzinflate(base64_decode($entry[0]['content']))); |
24 | $tpl->assign('is_fav', $entry[0]['is_fav']); | 24 | $tpl->assign('is_fav', $entry[0]['is_fav']); |
25 | $tpl->assign('is_read', $entry[0]['is_read']); | 25 | $tpl->assign('is_read', $entry[0]['is_read']); |
26 | $tpl->assign('load_all_js', 0); | 26 | $tpl->assign('load_all_js', 0); |