Update conference_profiles.php
Right now conference profiles are global.
This commit is contained in:
@@ -37,7 +37,7 @@
|
|||||||
|
|
||||||
//prepare to page the results
|
//prepare to page the results
|
||||||
$sql = "select count(*) as num_rows from v_conference_profiles ";
|
$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;
|
$sql .= $sql_search;
|
||||||
if (strlen($order_by)> 0) { $sql .= "order by $order_by $order "; }
|
if (strlen($order_by)> 0) { $sql .= "order by $order_by $order "; }
|
||||||
$prep_statement = $db->prepare($sql);
|
$prep_statement = $db->prepare($sql);
|
||||||
@@ -62,7 +62,7 @@
|
|||||||
|
|
||||||
//get the list
|
//get the list
|
||||||
$sql = "select * from v_conference_profiles ";
|
$sql = "select * from v_conference_profiles ";
|
||||||
$sql .= "where domain_uuid = '$domain_uuid' ";
|
//$sql .= "where domain_uuid = '$domain_uuid' ";
|
||||||
$sql .= $sql_search;
|
$sql .= $sql_search;
|
||||||
if (strlen($order_by)> 0) { $sql .= "order by $order_by $order "; }
|
if (strlen($order_by)> 0) { $sql .= "order by $order_by $order "; }
|
||||||
$sql .= "limit $rows_per_page offset $offset ";
|
$sql .= "limit $rows_per_page offset $offset ";
|
||||||
@@ -156,4 +156,4 @@
|
|||||||
//include the footer
|
//include the footer
|
||||||
require_once "resources/footer.php";
|
require_once "resources/footer.php";
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
|||||||
Reference in New Issue
Block a user