aboutsummaryrefslogtreecommitdiffhomepage
path: root/index.php
diff options
context:
space:
mode:
authorMaryana Rozhankivska <mariroz@mr.lviv.ua>2014-03-17 22:22:05 +0200
committerMaryana Rozhankivska <mariroz@mr.lviv.ua>2014-03-17 22:22:05 +0200
commiteb5b677250d16e6831bda43661c82e730358de65 (patch)
treed7e594c756792cbdd1bde8410ad9f82b286af9bc /index.php
parent897b2b53029b8490cd7e9ea329d4151c2f6bd123 (diff)
downloadwallabag-eb5b677250d16e6831bda43661c82e730358de65.tar.gz
wallabag-eb5b677250d16e6831bda43661c82e730358de65.tar.zst
wallabag-eb5b677250d16e6831bda43661c82e730358de65.zip
fix of #115 - stay connected and session livetime
Diffstat (limited to 'index.php')
-rw-r--r--index.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/index.php b/index.php
index 5ca8bef5..bc28a19d 100644
--- a/index.php
+++ b/index.php
@@ -12,6 +12,12 @@ define ('POCHE', '1.5.3');
12require 'check_setup.php'; 12require 'check_setup.php';
13require_once 'inc/poche/global.inc.php'; 13require_once 'inc/poche/global.inc.php';
14 14
15# Start session
16Session::$sessionName = 'poche';
17if ( !isset($_GET['login']) ) {
18 Session::init();
19}
20
15# Start Poche 21# Start Poche
16$poche = new Poche(); 22$poche = new Poche();
17$notInstalledMessage = $poche -> getNotInstalledMessage(); 23$notInstalledMessage = $poche -> getNotInstalledMessage();