From ba5c2b6a6d29671e505b240bb048a5d0e52b393c Mon Sep 17 00:00:00 2001 From: Mark Crane Date: Fri, 27 Sep 2013 09:54:07 +0000 Subject: [PATCH] Put the group names in ascending order in Group Manager. --- core/users/groups.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/users/groups.php b/core/users/groups.php index ebdff5fbfe..6bf1fd6582 100644 --- a/core/users/groups.php +++ b/core/users/groups.php @@ -17,7 +17,7 @@ The Initial Developer of the Original Code is Mark J Crane - Portions created by the Initial Developer are Copyright (C) 2008-2012 + Portions created by the Initial Developer are Copyright (C) 2008-2013 the Initial Developer. All Rights Reserved. Contributor(s): @@ -74,6 +74,7 @@ else { $sql = "SELECT * FROM v_groups "; $sql .= "where domain_uuid = '$domain_uuid' "; + $sql .= "order by group_name asc "; $prep_statement = $db->prepare(check_sql($sql)); $prep_statement->execute();