Fixed bug preventing scripts from being copied properly during install process (#2296)

This commit is contained in:
Tom Gillett
2017-01-10 15:11:09 +00:00
committed by FusionPBX
parent 7aacee9b37
commit 897038f2d8

View File

@@ -774,9 +774,9 @@ include "root.php";
$_SESSION["domain_uuid"] = $this->global_settings->domain_uuid();
require $this->config_php;
require "resources/require.php";
$_SESSION['event_socket_ip_address'] = $this->global_settings->event_host;
$_SESSION['event_socket_port'] = $this->global_settings->event_port;
$_SESSION['event_socket_password'] = $this->global_settings->event_password;
$_SESSION['event_socket_ip_address'] = $this->global_settings->switch_event_host();
$_SESSION['event_socket_port'] = $this->global_settings->switch_event_port();
$_SESSION['event_socket_password'] = $this->global_settings->switch_event_password();
//get the groups assigned to the user and then set the groups in $_SESSION["groups"]
$sql = "SELECT * FROM v_group_users ";