Add domain_uuid column name and use multiple lines for column names.

This commit is contained in:
FusionPBX
2020-07-06 11:29:11 -06:00
committed by GitHub
parent 8f5f94507a
commit b3a854eec6

View File

@@ -129,7 +129,8 @@
$offset = $rows_per_page * $page;
//get the list
$sql = "select domain_name, user_uuid, username, groups, contact_organization,contact_name, cast(user_enabled as text) ";
$sql = "select domain_name, domain_uuid, user_uuid, username, groups, ";
$sql .= "contact_organization,contact_name, cast(user_enabled as text) ";
$sql .= "from view_users ";
if ($_GET['show'] == "all" && permission_exists('user_all')) {
if (isset($sql_search)) {