aboutsummaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorElmar Ludwig <elmar.ludwig@uni-osnabrueck.de>2025-03-14 13:53:35 +0000
committerJan-Hendrik Willms <tleilax+studip@gmail.com>2025-03-24 09:24:42 +0100
commit342b61c966927fc4c769b9bb0c750bf94d1dd6b4 (patch)
treecd9046f9615bf52dc3296ace778ef3f8adb50a55 /app
parent1e177b8a70ac03e020252e097b6bea576e27fdf3 (diff)
sort user list by last name, first name, fixes #5378
Closes #5378 Merge request studip/studip!4048
Diffstat (limited to 'app')
-rw-r--r--app/views/admin/role/show_role.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/admin/role/show_role.php b/app/views/admin/role/show_role.php
index 196f9bf..c904cb0 100644
--- a/app/views/admin/role/show_role.php
+++ b/app/views/admin/role/show_role.php
@@ -98,7 +98,7 @@ use Studip\Button;
</td>
<td>
<a href="<?= $controller->link_for('admin/role/assign_role', $user->id) ?>">
- <?= htmlReady(sprintf('%s %s (%s)', $user->vorname, $user->nachname, $user->username)) ?>
+ <?= htmlReady(sprintf('%s, %s (%s)', $user->nachname, $user->vorname, $user->username)) ?>
</a>
</td>
<td><?= htmlReady($user->perms) ?></td>