Update conference_profiles.php

Right now conference profiles are global.
This commit is contained in:
FusionPBX
2016-07-16 17:24:05 -06:00
committed by GitHub
parent efbb82c417
commit 555541ec0c

View File

@@ -37,7 +37,7 @@
//prepare to page the results
$sql = "select count(*) as num_rows from v_conference_profiles ";
$sql .= "where domain_uuid = '$domain_uuid' ";
//$sql .= "where domain_uuid = '$domain_uuid' ";
$sql .= $sql_search;
if (strlen($order_by)> 0) { $sql .= "order by $order_by $order "; }
$prep_statement = $db->prepare($sql);
@@ -62,7 +62,7 @@
//get the list
$sql = "select * from v_conference_profiles ";
$sql .= "where domain_uuid = '$domain_uuid' ";
//$sql .= "where domain_uuid = '$domain_uuid' ";
$sql .= $sql_search;
if (strlen($order_by)> 0) { $sql .= "order by $order_by $order "; }
$sql .= "limit $rows_per_page offset $offset ";
@@ -156,4 +156,4 @@
//include the footer
require_once "resources/footer.php";
?>
?>