Start the session in the header.php

This commit is contained in:
FusionPBX 2024-11-27 09:26:10 -07:00 committed by GitHub
parent c88378a4fe
commit 8563df387f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 12 additions and 1 deletions

View File

@ -25,7 +25,18 @@
*/
//includes files
require_once __DIR__ . "/require.php";
require_once __DIR__ . "/require.php";
//start the session
ini_set("session.cookie_httponly", true);
if (!isset($_SESSION)) { session_start(); }
//set the domains session
if (!isset($_SESSION['domains'])) {
$domain = new domains();
$domain->session();
$domain->set();
}
//if reloadxml then run the command
if (permission_exists('dialplan_edit') && isset($_SESSION["reload_xml"])) {