From 3ee5b61d3336ff899c13013ee82354824d2ae5b5 Mon Sep 17 00:00:00 2001 From: Mark Crane Date: Sat, 12 Apr 2014 22:10:22 +0000 Subject: [PATCH] Fix the source file path on XML CDR for the Debian package. --- resources/switch.php | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/resources/switch.php b/resources/switch.php index 28b00dfac5..838050d8fa 100644 --- a/resources/switch.php +++ b/resources/switch.php @@ -2989,7 +2989,13 @@ if (!function_exists('xml_cdr_conf_xml')) { global $db, $domain_uuid; //get the contents of the template - $file_contents = file_get_contents($_SERVER["DOCUMENT_ROOT"].PROJECT_PATH."/resources/templates/conf/autoload_configs/xml_cdr.conf.xml"); + if (file_exists('/usr/share/fusionpbx/resources/templates/conf')) { + $path = "/usr/share/fusionpbx/resources/templates/conf"; + } + else { + $path = $_SERVER["DOCUMENT_ROOT"].PROJECT_PATH; + } + $file_contents = file_get_contents($path."/resources/templates/conf/autoload_configs/xml_cdr.conf.xml"); //replace the values in the template $file_contents = str_replace("{v_http_protocol}", "http", $file_contents);