]> git.immae.eu Git - github/wallabag/wallabag.git/blobdiff - index.php
problem with resources and localhost url fix
[github/wallabag/wallabag.git] / index.php
index ecae911983ef77f92312a149037b0fae5e4f69fe..fb13f38d499f3a271083a93e2aff26994991c232 100644 (file)
--- a/index.php
+++ b/index.php
 define ('POCHE', '1.5.3');
 require 'check_setup.php';
 require_once 'inc/poche/global.inc.php';
-session_start(); 
+
+# Start session
+Session::$sessionName = 'poche';
+Session::init();
 
 # Start Poche
 $poche = new Poche();
@@ -117,6 +120,7 @@ if (Session::isLogged()) {
 } else {
     $tpl_file = Tools::getTplFile('login');
     $tpl_vars['http_auth'] = 0;
+    Session::logout();
 }
 
 # because messages can be added in $poche->action(), we have to add this entry now (we can add it before)