Fix a conference center room bug that prevented the page from working correctly.

This commit is contained in:
Mark Crane
2013-04-22 22:47:03 +00:00
parent 35b1b2cb1d
commit 4c98adca36

View File

@@ -52,9 +52,6 @@ else {
//get the conference centers
$sql = "select * from v_conference_centers ";
$sql .= "where domain_uuid = '$domain_uuid' ";
if (strlen($conference_room_uuid) > 0) {
$sql .= "and conference_room_uuid = '".$conference_room_uuid."' ";
}
$sql .= "order by conference_center_name asc ";
$prep_statement = $db->prepare(check_sql($sql));
$prep_statement->execute();