diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2015-04-10 10:43:39 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2015-04-10 10:43:39 +0200 |
commit | bbb2567918793e87ea1d3b3ddeb95411457c1ff6 (patch) | |
tree | 1ac9d269c45d95a4a2db3f154822c9c90741a9e2 /settings | |
parent | 43b503641c9f3cc705f4a5c318c4122d00f8940a (diff) | |
parent | 7b8c55651f674fbe2ae2ea43a42cda0b61261c13 (diff) | |
download | nextcloud-server-bbb2567918793e87ea1d3b3ddeb95411457c1ff6.tar.gz nextcloud-server-bbb2567918793e87ea1d3b3ddeb95411457c1ff6.zip |
Merge pull request #15398 from Volker-E/master
fixing #15396 & #15397
Diffstat (limited to 'settings')
-rw-r--r-- | settings/templates/users/part.userlist.php | 46 |
1 files changed, 23 insertions, 23 deletions
diff --git a/settings/templates/users/part.userlist.php b/settings/templates/users/part.userlist.php index 4346920e43a..15b7cb4abd7 100644 --- a/settings/templates/users/part.userlist.php +++ b/settings/templates/users/part.userlist.php @@ -1,31 +1,31 @@ <table id="userlist" class="hascontrols grid" data-groups="<?php p($_['allGroups']);?>"> <thead> <tr> - <?php if ($_['enableAvatars']): ?> - <th id='headerAvatar'></th> - <?php endif; ?> - <th id='headerName'><?php p($l->t('Username'))?></th> - <th id="headerDisplayName"><?php p($l->t( 'Full Name' )); ?></th> - <th id="headerPassword"><?php p($l->t( 'Password' )); ?></th> - <th class="mailAddress"><?php p($l->t( 'Email' )); ?></th> - <th id="headerGroups"><?php p($l->t( 'Groups' )); ?></th> - <?php if(is_array($_['subadmins']) || $_['subadmins']): ?> - <th id="headerSubAdmins"><?php p($l->t('Group Admin for')); ?></th> - <?php endif;?> - <th id="headerQuota"><?php p($l->t('Quota')); ?></th> - <th class="storageLocation"><?php p($l->t('Storage Location')); ?></th> - <th class="userBackend"><?php p($l->t('User Backend')); ?></th> - <th class="lastLogin"><?php p($l->t('Last Login')); ?></th> + <?php if ($_['enableAvatars']): ?> + <th id="headerAvatar" scope="col"></th> + <?php endif; ?> + <th id="headerName" scope="col"><?php p($l->t('Username'))?></th> + <th id="headerDisplayName" scope="col"><?php p($l->t( 'Full Name' )); ?></th> + <th id="headerPassword" scope="col"><?php p($l->t( 'Password' )); ?></th> + <th class="mailAddress" scope="col"><?php p($l->t( 'Email' )); ?></th> + <th id="headerGroups" scope="col"><?php p($l->t( 'Groups' )); ?></th> + <?php if(is_array($_['subadmins']) || $_['subadmins']): ?> + <th id="headerSubAdmins" scope="col"><?php p($l->t('Group Admin for')); ?></th> + <?php endif;?> + <th id="headerQuota" scope="col"><?php p($l->t('Quota')); ?></th> + <th class="storageLocation" scope="col"><?php p($l->t('Storage Location')); ?></th> + <th class="userBackend" scope="col"><?php p($l->t('User Backend')); ?></th> + <th class="lastLogin" scope="col"><?php p($l->t('Last Login')); ?></th> <th id="headerRemove"> </th> </tr> </thead> <tbody> <!-- the following <tr> is used as a template for the JS part --> <tr style="display:none"> - <?php if ($_['enableAvatars']): ?> - <td class="avatar"><div class="avatardiv"></div></td> - <?php endif; ?> - <td class="name"></td> + <?php if ($_['enableAvatars']): ?> + <td class="avatar"><div class="avatardiv"></div></td> + <?php endif; ?> + <th class="name" scope="row"></th> <td class="displayName"><span></span> <img class="svg action" src="<?php p(image_path('core', 'actions/rename.svg'))?>" alt="<?php p($l->t("change full name"))?>" title="<?php p($l->t("change full name"))?>"/> @@ -39,11 +39,11 @@ alt="<?php p($l->t('change email address'))?>" title="<?php p($l->t('change email address'))?>"/> </td> <td class="groups"></td> - <?php if(is_array($_['subadmins']) || $_['subadmins']): ?> - <td class="subadmins"></td> - <?php endif;?> + <?php if(is_array($_['subadmins']) || $_['subadmins']): ?> + <td class="subadmins"></td> + <?php endif;?> <td class="quota"> - <select class='quota-user' data-inputtitle="<?php p($l->t('Please enter storage quota (ex: "512 MB" or "12 GB")')) ?>"> + <select class="quota-user" data-inputtitle="<?php p($l->t('Please enter storage quota (ex: "512 MB" or "12 GB")')) ?>"> <option value='default'> <?php p($l->t('Default'));?> </option> |