aboutsummaryrefslogtreecommitdiff
path: root/app/controllers/admin
diff options
context:
space:
mode:
authorMoritz Strohm <strohm@data-quest.de>2023-11-13 09:23:07 +0000
committerMoritz Strohm <strohm@data-quest.de>2023-11-13 09:23:07 +0000
commit66518ee520fff1c1f440345dfa443e2fb6f1fbb6 (patch)
tree97428651968ef2b1862ec860d00092ef681cd9f7 /app/controllers/admin
parenta6d4707a62880da95174bb58a8bb1d0483d5f7e5 (diff)
show "Matrikelnummer" field in admin/user result table, closes #3336
Closes #3336 Merge request studip/studip!2270
Diffstat (limited to 'app/controllers/admin')
-rw-r--r--app/controllers/admin/user.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/admin/user.php b/app/controllers/admin/user.php
index 37b8b53..b6a4048 100644
--- a/app/controllers/admin/user.php
+++ b/app/controllers/admin/user.php
@@ -417,7 +417,7 @@ class Admin_UserController extends AuthenticatedController
if (count($editPerms)) {
$editUser['auth_user_md5.perms'] = $editPerms[0];
}
- foreach (words('Vorname Nachname auth_plugin visible') as $param) {
+ foreach (['Vorname', 'Nachname', 'matriculation_number', 'auth_plugin', 'visible'] as $param) {
if (Request::get($param)) $editUser['auth_user_md5.' . $param] = Request::get($param);
}
foreach (words('title_front title_rear geschlecht preferred_language') as $param) {