Update switch.php

Add a missing forward slash.
This commit is contained in:
FusionPBX 2016-05-26 19:52:03 -06:00
parent 37a2ed2d17
commit d2219caf38
1 changed files with 2 additions and 2 deletions

View File

@ -1432,7 +1432,7 @@ if (!function_exists('save_switch_xml')) {
save_setting_xml();
}
if (file_exists($_SERVER["PROJECT_ROOT"]."/app/modules/app_config.php")) {
require_once $_SERVER["DOCUMENT_ROOT"].PROJECT_PATH."app/modules/resources/classes/modules.php";
require_once $_SERVER["DOCUMENT_ROOT"].PROJECT_PATH."/app/modules/resources/classes/modules.php";
$module = new modules;
$module->xml();
//$msg = $module->msg;
@ -1502,4 +1502,4 @@ if(!function_exists('find_php_by_extension')) {
}
}
?>
?>