mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-05-25 22:09:11 -04:00
Sort users in group box by name. Thanks edisonnews! Fixes #1662.
This commit is contained in:
@@ -17,7 +17,7 @@
|
||||
|
||||
<? if ($group->users->count_all() > 0): ?>
|
||||
<ul class="g-member-list">
|
||||
<? foreach ($group->users->find_all() as $i => $user): ?>
|
||||
<? foreach ($group->users->order_by("name", "ASC")->find_all() as $i => $user): ?>
|
||||
<li class="g-user">
|
||||
<?= html::clean($user->name) ?>
|
||||
<? if (!$group->special): ?>
|
||||
|
||||
Reference in New Issue
Block a user