mirror of
https://github.com/fusionpbx/fusionpbx.git
synced 2025-12-30 00:53:50 +00:00
Make sure the origination_uuid is set
This commit is contained in:
@@ -264,7 +264,7 @@
|
||||
$fax_options = "fax_use_ecm=true,fax_enable_t38=true,fax_enable_t38_request=true,fax_disable_v17=true";
|
||||
}
|
||||
else {
|
||||
//try the user-definable method again
|
||||
//try the user definable method again
|
||||
$fax_options = '';
|
||||
foreach($setting->get('fax','variable') as $variable) {
|
||||
$fax_options .= $variable.",";
|
||||
@@ -329,6 +329,11 @@
|
||||
}
|
||||
}
|
||||
|
||||
//set the origination uuid
|
||||
if (!is_uuid($origination_uuid)) {
|
||||
$origination_uuid = uuid();
|
||||
}
|
||||
|
||||
//build a list of fax variables
|
||||
$dial_string = $common_variables;
|
||||
$dial_string .= $fax_options.",";
|
||||
|
||||
Reference in New Issue
Block a user