diff options
Diffstat (limited to 'settings/templates')
-rw-r--r-- | settings/templates/users.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/settings/templates/users.php b/settings/templates/users.php index 2ba57fb4a7c..6407b59883a 100644 --- a/settings/templates/users.php +++ b/settings/templates/users.php @@ -91,7 +91,8 @@ var isadmin = <?php echo $_['isadmin']?'true':'false'; ?>; </thead> <tbody> <?php foreach($_["users"] as $user): ?> - <tr data-uid="<?php echo $user["name"] ?>"> + <tr data-uid="<?php echo $user["name"] ?>" + data-displayName="<?php echo $user["displayName"] ?>"> <td class="name"><?php echo $user["name"]; ?></td> <td class="displayName"><span><?php echo $user["displayName"]; ?></span> <img class="svg action" src="<?php echo image_path('core', 'actions/rename.svg')?>" |