fixed some typo's
This commit is contained in:
+5
-14
@@ -171,14 +171,12 @@ require_once "resources/functions.php";
|
|||||||
$switch_dialplan_dir = $switch_conf_dir.'/dialplan';
|
$switch_dialplan_dir = $switch_conf_dir.'/dialplan';
|
||||||
}
|
}
|
||||||
//old
|
//old
|
||||||
else {
|
elseif (file_exists('/etc/freeswitch/vars.xml')) {
|
||||||
if (file_exists('/etc/freeswitch/vars.xml')) {
|
|
||||||
$switch_conf_dir = '/etc/freeswitch';
|
$switch_conf_dir = '/etc/freeswitch';
|
||||||
$switch_extensions_dir = $switch_conf_dir.'/directory';
|
$switch_extensions_dir = $switch_conf_dir.'/directory';
|
||||||
$switch_sip_profiles_dir = $switch_conf_dir.'/sip_profiles';
|
$switch_sip_profiles_dir = $switch_conf_dir.'/sip_profiles';
|
||||||
$switch_dialplan_dir = $switch_conf_dir.'/dialplan';
|
$switch_dialplan_dir = $switch_conf_dir.'/dialplan';
|
||||||
}
|
}
|
||||||
}
|
|
||||||
if (file_exists('/var/lib/freeswitch/db')) {
|
if (file_exists('/var/lib/freeswitch/db')) {
|
||||||
$switch_db_dir = '/var/lib/freeswitch/db';
|
$switch_db_dir = '/var/lib/freeswitch/db';
|
||||||
}
|
}
|
||||||
@@ -193,40 +191,33 @@ require_once "resources/functions.php";
|
|||||||
$switch_scripts_dir = '/var/lib/fusionpbx/scripts';
|
$switch_scripts_dir = '/var/lib/fusionpbx/scripts';
|
||||||
}
|
}
|
||||||
//old
|
//old
|
||||||
else {
|
elseif (file_exists('/usr/share/freeswitch/scripts')) {
|
||||||
if (file_exists('/usr/share/freeswitch/scripts')) {
|
|
||||||
$switch_scripts_dir = '/usr/share/freeswitch/scripts';
|
$switch_scripts_dir = '/usr/share/freeswitch/scripts';
|
||||||
}
|
}
|
||||||
}
|
|
||||||
//new
|
//new
|
||||||
if (file_exists('/usr/share/freeswitch/grammar')) {
|
if (file_exists('/usr/share/freeswitch/grammar')) {
|
||||||
$switch_grammar_dir = '/usr/share/freeswitch/grammar';
|
$switch_grammar_dir = '/usr/share/freeswitch/grammar';
|
||||||
}
|
}
|
||||||
//old
|
//old
|
||||||
else {
|
else (file_exists('/usr/share/freeswitch/grammar')) {
|
||||||
if (file_exists('/usr/share/freeswitch/grammar')) {
|
|
||||||
$switch_grammar_dir = '/usr/share/freeswitch/grammar';
|
$switch_grammar_dir = '/usr/share/freeswitch/grammar';
|
||||||
}
|
}
|
||||||
}
|
|
||||||
//new
|
//new
|
||||||
if (file_exists('/var/lib/fusionpbx/storage')) {
|
if (file_exists('/var/lib/fusionpbx/storage')) {
|
||||||
$switch_storage_dir = '/var/lib/fusionpbx/storage';
|
$switch_storage_dir = '/var/lib/fusionpbx/storage';
|
||||||
$switch_voicemail_dir = $switch_storage_dir.'/voicemail';
|
$switch_voicemail_dir = $switch_storage_dir.'/voicemail';
|
||||||
}
|
}
|
||||||
else {
|
|
||||||
//old
|
//old
|
||||||
if (file_exists('/var/lib/freeswitch/storage')) {
|
elseif (file_exists('/var/lib/freeswitch/storage')) {
|
||||||
$switch_storage_dir = '/var/lib/freeswitch/storage';
|
$switch_storage_dir = '/var/lib/freeswitch/storage';
|
||||||
$switch_voicemail_dir = $switch_storage_dir.'/voicemail';
|
$switch_voicemail_dir = $switch_storage_dir.'/voicemail';
|
||||||
}
|
}
|
||||||
}
|
|
||||||
//new
|
//new
|
||||||
if (file_exists('/var/lib/fusionpbx/recordings')) {
|
if (file_exists('/var/lib/fusionpbx/recordings')) {
|
||||||
$switch_recordings_dir = '/var/lib/fusionpbx/recordings';
|
$switch_recordings_dir = '/var/lib/fusionpbx/recordings';
|
||||||
}
|
}
|
||||||
else {
|
|
||||||
//old
|
//old
|
||||||
if (file_exists('/var/lib/freeswitch/recordings')) {
|
elseif (file_exists('/var/lib/freeswitch/recordings')) {
|
||||||
$switch_recordings_dir = '/var/lib/freeswitch/recordings';
|
$switch_recordings_dir = '/var/lib/freeswitch/recordings';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user