Add inline to the anti-action xml dialplan files

This commit is contained in:
Mark Crane 2014-07-09 05:56:01 +00:00
parent 0d1ca315a4
commit 0a6da97adc
1 changed files with 7 additions and 2 deletions

View File

@ -2423,11 +2423,16 @@ function save_dialplan_xml() {
} }
//anti-actions //anti-actions
if ($ent['dialplan_detail_tag'] == "anti-action") { if ($ent['dialplan_detail_tag'] == "anti-action") {
//get the action inline attribute
$anti_action_inline = '';
if (strlen($ent['dialplan_detail_inline']) > 0) {
$anti_action_inline = "inline=\"".$ent['dialplan_detail_inline']."\"";
}
if (strlen($ent['dialplan_detail_data']) > 0) { if (strlen($ent['dialplan_detail_data']) > 0) {
$tmp .= " <anti-action application=\"".$ent['dialplan_detail_type']."\" data=\"".$ent['dialplan_detail_data']."\"/>\n"; $tmp .= " <anti-action application=\"".$ent['dialplan_detail_type']."\" data=\"".$ent['dialplan_detail_data']."\" $anti_action_inline/>\n";
} }
else { else {
$tmp .= " <anti-action application=\"".$ent['dialplan_detail_type']."\"/>\n"; $tmp .= " <anti-action application=\"".$ent['dialplan_detail_type']."\" $anti_action_inline/>\n";
} }
} }
//set the previous dialplan_detail_tag //set the previous dialplan_detail_tag