From 33234aed2b580ada98a5babb5de8038814db2ea5 Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Fri, 23 Feb 2018 10:00:58 -0700 Subject: [PATCH] Delete app_defaults.php --- app/dialplan_outbound/app_defaults.php | 46 -------------------------- 1 file changed, 46 deletions(-) delete mode 100644 app/dialplan_outbound/app_defaults.php diff --git a/app/dialplan_outbound/app_defaults.php b/app/dialplan_outbound/app_defaults.php deleted file mode 100644 index d92fd28095..0000000000 --- a/app/dialplan_outbound/app_defaults.php +++ /dev/null @@ -1,46 +0,0 @@ - - Portions created by the Initial Developer are Copyright (C) 2008-2016 - the Initial Developer. All Rights Reserved. - - Contributor(s): - Mark J Crane -*/ - -//make sure that enum uses sofia internal in the enum.conf.xml file - if ($domains_processed == 1) { - if (is_array($_SESSION['switch']['conf'])) { - $switch_conf_dir = $_SESSION['switch']['conf']['dir']; - if (file_exists($switch_conf_dir."/autoload_configs/enum.conf.xml")) { - $file_contents = file_get_contents($switch_conf_dir."/autoload_configs/enum.conf.xml"); - $file_contents_new = str_replace("service=\"E2U+SIP\" regex=\"sip:(.*)\" replace=\"sofia/\${use_profile}/\$1", "service=\"E2U+SIP\" regex=\"sip:(.*)\" replace=\"sofia/internal/\$1", $file_contents); - if ($file_contents != $file_contents_new) { - $fout = fopen($switch_conf_dir."/autoload_configs/enum.conf.xml","w"); - fwrite($fout, $file_contents_new); - fclose($fout); - if ($display_type == "text") { - echo " enum.conf.xml: updated\n"; - } - } - } - } - } - -?>