Skip to content
Snippets Groups Projects
Commit c9ea1436 authored by Olivier PEREZ's avatar Olivier PEREZ
Browse files

Fix promblem with Session loading

parent 985842ed
No related branches found
No related tags found
No related merge requests found
......@@ -17,7 +17,6 @@
* Auteurs de Framadate/OpenSondage : Framasoft (https://github.com/framasoft)
*/
namespace Framadate;
session_start();
include_once __DIR__ . '/../app/inc/init.php';
include_once __DIR__ . '/../bandeaux.php';
......
......@@ -19,6 +19,9 @@
use Framadate\FramaDB;
use Framadate\Utils;
// Autoloading of dependencies with Composer
require_once __DIR__ . '/../../vendor/autoload.php';
if (session_id() == '') {
session_start();
}
......@@ -28,9 +31,6 @@ if (ini_get('date.timezone') == '') {
}
include_once __DIR__ . '/constants.php';
// Autoloading of dependencies with Composer
require_once __DIR__ . '/../../vendor/autoload.php';
include_once __DIR__ . '/i18n.php';
// Smarty
......
......@@ -19,6 +19,7 @@
namespace Framadate;
include_once __DIR__ . '/app/inc/init.php';
if (!isset($_SESSION['form'])) {
$_SESSION['form'] = new Form();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment