fixed some typo's

This commit is contained in:
Richard Neese
2014-09-15 20:24:08 +00:00
parent f899e26d4e
commit 9fd7a0a2b3
+7 -16
View File
@@ -171,13 +171,11 @@ 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 elseif (file_exists('/var/lib/freeswitch/recordings')) {
if (file_exists('/var/lib/freeswitch/recordings')) {
$switch_recordings_dir = '/var/lib/freeswitch/recordings'; $switch_recordings_dir = '/var/lib/freeswitch/recordings';
} }
} }