aboutsummaryrefslogtreecommitdiffhomepage
path: root/view.php
diff options
context:
space:
mode:
authornicosomb <nicolas@loeuillet.org>2013-04-17 15:11:57 +0200
committernicosomb <nicolas@loeuillet.org>2013-04-17 15:11:57 +0200
commit1c182b6c9d74875054dc8efe75564ceab1bc1abe (patch)
tree97ab86be512a518ec3fac8d629211bb666741004 /view.php
parent4456315b217f4eb253fc4403e43cdcb0012356e6 (diff)
downloadwallabag-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-xview.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/view.php b/view.php
index 9ba6f62d..9aa9a445 100755
--- a/view.php
+++ b/view.php
@@ -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);