1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-09-15 18:57:05 +00:00

fix of #115 - stay connected and session livetime

This commit is contained in:
Maryana Rozhankivska 2014-03-17 22:22:05 +02:00
parent 897b2b5302
commit eb5b677250
3 changed files with 27 additions and 7 deletions

View file

@ -12,6 +12,12 @@ define ('POCHE', '1.5.3');
require 'check_setup.php';
require_once 'inc/poche/global.inc.php';
# Start session
Session::$sessionName = 'poche';
if ( !isset($_GET['login']) ) {
Session::init();
}
# Start Poche
$poche = new Poche();
$notInstalledMessage = $poche -> getNotInstalledMessage();