2017-04-18 04:11:35 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
if ($domains_processed == 1) {
|
|
|
|
|
|
2018-06-06 02:21:38 +02:00
|
|
|
$sql = "update v_dialplan_details ";
|
|
|
|
|
$sql .= "set dialplan_detail_data = replace(dialplan_detail_data, '-','@') ";
|
|
|
|
|
$sql .= "where dialplan_detail_type = 'conference' and dialplan_detail_data like '%-%';";
|
2019-07-29 17:26:52 +02:00
|
|
|
$database = new database;
|
|
|
|
|
$database->execute($sql);
|
2018-06-06 02:21:38 +02:00
|
|
|
unset($sql);
|
2017-04-18 04:11:35 +02:00
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
?>
|