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 1fd108043a
commit f27912591e
1 changed files with 3 additions and 3 deletions

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";
?>
?>