Fix promblem with Session loading

This commit is contained in:
Olivier PEREZ 2015-01-03 17:29:57 +01:00
parent 985842edf3
commit c9ea14362d
3 changed files with 4 additions and 4 deletions

View File

@ -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';

View File

@ -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

View File

@ -19,6 +19,7 @@
namespace Framadate;
include_once __DIR__ . '/app/inc/init.php';
if (!isset($_SESSION['form'])) {
$_SESSION['form'] = new Form();
}