Merge pull request #1213 from blackc2004/patch-9

Update extension.php
This commit is contained in:
FusionPBX
2015-10-30 09:31:53 -06:00

View File

@@ -65,6 +65,7 @@
public $nibble_account;
public $mwi_account;
public $sip_bypass_media;
public $absolute_codec_string;
public $dial_string;
public $enabled;
public $description;
@@ -360,6 +361,9 @@
$xml .= " <variable name=\"proxy_media\" value=\"true\"/>\n";
break;
}
if (strlen($row['absolute_codec_string']) > 0) {
$xml .= " <variable name=\"absolute_codec_string\" value=\"" . $row['absolute_codec_string'] . "\"/>\n";
}
if (strlen($row['forward_all_enabled']) > 0) {
$xml .= " <variable name=\"forward_all_enabled\" value=\"" . $row['forward_all_enabled'] . "\"/>\n";
}
@@ -494,4 +498,4 @@
}
}
?>
?>