Update conference_control_details.php

This commit is contained in:
FusionPBX 2016-10-29 00:21:05 -06:00 committed by GitHub
parent 9e05dd38d8
commit abf61c5ea2
1 changed files with 3 additions and 2 deletions

View File

@ -37,7 +37,8 @@
require_once "resources/paging.php";
//prepare to page the results
$sql = "select count(*) as num_rows from v_conference_control_details ";
$sql = "select count(*) as num_rows ";
$sql .= "from v_conference_control_details ";
$sql .= "where conference_control_uuid = '$conference_control_uuid' ";
//$sql .= "and domain_uuid = '$domain_uuid' ";
$sql .= $sql_search;
@ -156,4 +157,4 @@
//include the footer
require_once "resources/footer.php";
?>
?>