Update domains.php

This commit is contained in:
FusionPBX 2018-04-21 18:54:44 -06:00 committed by GitHub
parent 8b646c36e0
commit 3a570426ca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 15 deletions

View File

@ -112,21 +112,6 @@
$order = check_str($_GET["order"]);
}
//rebuild the domains session array
unset($_SESSION["domains"]);
$sql = "select * from v_domains ";
$sql .= "order by v_domains asc; ";
$prep_statement = $db->prepare($sql);
$prep_statement->execute();
$domains = $prep_statement->fetchAll(PDO::FETCH_NAMED);
unset($prep_statement);
if (is_array($domains)) {
foreach($domains as $row) {
$_SESSION['domains'][$row['domain_uuid']] = $row;
}
unset($domains);
}
//prepare to page the results
$sql = "select count(*) as num_rows from v_domains ";
if (strlen($search) > 0) {