diff options
author | Björn Schießle <schiessle@owncloud.com> | 2013-01-28 17:01:37 +0100 |
---|---|---|
committer | Björn Schießle <schiessle@owncloud.com> | 2013-01-28 17:01:37 +0100 |
commit | f3a99f4869ea238822793f89bef14b564c333aad (patch) | |
tree | f0e5ff4440138432ecc83dc42077cd3ffa61c60e /settings/templates | |
parent | 590c4aa710077ae82a5af0ec4477a00eafe791dc (diff) | |
download | nextcloud-server-f3a99f4869ea238822793f89bef14b564c333aad.tar.gz nextcloud-server-f3a99f4869ea238822793f89bef14b564c333aad.zip |
show display name in input field
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')?>" |