From 1214c7534538f54c00a35685566e90a4ee516574 Mon Sep 17 00:00:00 2001 From: JediKev <kevin@enhancesoft.com> Date: Mon, 18 Mar 2019 12:26:22 -0500 Subject: [PATCH] issue: Organizations Users Sort This addresses issue 4803 where sorting by Users on Organizations does not sort properly. It sorts by name instead of the User count. This corrects the value in the `$sortOptions` array from `users` to `user_count`. --- include/staff/orgs.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/staff/orgs.inc.php b/include/staff/orgs.inc.php index feb53acb3..b8236d545 100644 --- a/include/staff/orgs.inc.php +++ b/include/staff/orgs.inc.php @@ -18,7 +18,7 @@ if ($_REQUEST['query']) { $sortOptions = array( 'name' => 'name', - 'users' => 'users', + 'users' => 'user_count', 'create' => 'created', 'update' => 'updated' ); -- GitLab