summaryrefslogtreecommitdiff
path: root/index.php
diff options
context:
space:
mode:
authorFrédéric Guillot <contact@fredericguillot.com>2014-02-27 19:37:16 -0500
committerFrédéric Guillot <contact@fredericguillot.com>2014-02-27 19:37:16 -0500
commite3ff52ad89b1ac8549ee4b2b679cf9d7a2f96d29 (patch)
treec3455801543e8feff417c76d43ee0e2c670de4ad /index.php
parent2f6b9353d54823ed12a57a6bd425323ceb1356d9 (diff)
Improve session creation
Diffstat (limited to 'index.php')
-rw-r--r--index.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/index.php b/index.php
index 6925570e..61a04537 100644
--- a/index.php
+++ b/index.php
@@ -9,5 +9,8 @@ if (file_exists('config.php')) require 'config.php';
// Auto-refresh frequency in seconds for the public board view
defined('AUTO_REFRESH_DURATION') or define('AUTO_REFRESH_DURATION', 60);
+// Custom session save path
+defined('SESSION_SAVE_PATH') or define('SESSION_SAVE_PATH', '');
+
$router = new Router;
$router->execute();