Browse Source

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

FusionPBX 5 years ago
parent
commit
f76a455f41
1 changed files with 2 additions and 1 deletions
  1. 2 1
      core/users/users.php

+ 2 - 1
core/users/users.php

@@ -129,7 +129,8 @@
 	$offset = $rows_per_page * $page;
 	$offset = $rows_per_page * $page;
 
 
 //get the list
 //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 ";
 	$sql .= "from view_users ";
 	if ($_GET['show'] == "all" && permission_exists('user_all')) {
 	if ($_GET['show'] == "all" && permission_exists('user_all')) {
 		if (isset($sql_search)) {
 		if (isset($sql_search)) {