aboutsummaryrefslogtreecommitdiffhomepage
path: root/index.php
diff options
context:
space:
mode:
authornicosomb <nicolas@loeuillet.org>2013-04-16 12:58:03 +0200
committernicosomb <nicolas@loeuillet.org>2013-04-16 12:58:03 +0200
commit9fee2e7266a269a8795b96b972cdc62bbcb3329b (patch)
tree0abca9c0e46821a37d559d84051062b3ce431117 /index.php
parent139769aa245fd58d032cb009303b0ea2cc4187cd (diff)
downloadwallabag-9fee2e7266a269a8795b96b972cdc62bbcb3329b.tar.gz
wallabag-9fee2e7266a269a8795b96b972cdc62bbcb3329b.tar.zst
wallabag-9fee2e7266a269a8795b96b972cdc62bbcb3329b.zip
Fixed #13 - tri par date / tri par titre
Diffstat (limited to 'index.php')
-rwxr-xr-xindex.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/index.php b/index.php
index f62cf139..c303f8e3 100755
--- a/index.php
+++ b/index.php
@@ -10,10 +10,10 @@
10 10
11include dirname(__FILE__).'/inc/config.php'; 11include dirname(__FILE__).'/inc/config.php';
12 12
13$entries = display_view(); 13$entries = display_view($view);
14 14
15$tpl->assign('title', 'poche, a read it later open source system'); 15$tpl->assign('title', 'poche, a read it later open source system');
16$tpl->assign('view', $_SESSION['view']); 16$tpl->assign('view', $view);
17$tpl->assign('poche_url', get_poche_url()); 17$tpl->assign('poche_url', get_poche_url());
18$tpl->assign('entries', $entries); 18$tpl->assign('entries', $entries);
19$tpl->assign('load_all_js', 1); 19$tpl->assign('load_all_js', 1);