From abf61c5ea22d831b87a8614c884b7162b019b733 Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Sat, 29 Oct 2016 00:21:05 -0600 Subject: [PATCH] Update conference_control_details.php --- app/conference_controls/conference_control_details.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/app/conference_controls/conference_control_details.php b/app/conference_controls/conference_control_details.php index 790ed2978d..d400fc63fa 100644 --- a/app/conference_controls/conference_control_details.php +++ b/app/conference_controls/conference_control_details.php @@ -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"; -?> \ No newline at end of file +?>