Update conference_profiles.php
Right now conference profiles are global.
This commit is contained in:
parent
1fd108043a
commit
f27912591e
|
|
@ -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";
|
||||
|
||||
?>
|
||||
?>
|
||||
|
|
|
|||
Loading…
Reference in New Issue