diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2013-06-19 01:02:15 -0700 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2013-06-19 01:02:15 -0700 |
commit | dd231b530d6cbf168c85bb83b2a268b1d70b8ce8 (patch) | |
tree | 67fe787bb0700058f14fd34e36b6c990493aa931 | |
parent | 11194c69db652162baf214995aad5908974aa65d (diff) | |
parent | 4dd0076e7cfda06ea0351fb64da23535ce4e9299 (diff) | |
download | nextcloud-server-dd231b530d6cbf168c85bb83b2a268b1d70b8ce8.tar.gz nextcloud-server-dd231b530d6cbf168c85bb83b2a268b1d70b8ce8.zip |
Merge pull request #3773 from owncloud/port_3596
Users page: username instead of login name as col header to avoid confus...
-rw-r--r-- | settings/templates/users.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/settings/templates/users.php b/settings/templates/users.php index b0637814f5d..9fcc11ab89a 100644 --- a/settings/templates/users.php +++ b/settings/templates/users.php @@ -81,7 +81,7 @@ $_['subadmingroups'] = array_flip($items); <table class="hascontrols" data-groups="<?php p(implode(', ', $allGroups));?>"> <thead> <tr> - <th id='headerName'><?php p($l->t('Login Name'))?></th> + <th id='headerName'><?php p($l->t('Username'))?></th> <th id="headerDisplayName"><?php p($l->t( 'Display Name' )); ?></th> <th id="headerPassword"><?php p($l->t( 'Password' )); ?></th> <th id="headerGroups"><?php p($l->t( 'Groups' )); ?></th> |