diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2017-03-28 01:18:16 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2017-03-28 01:18:16 +0200 |
commit | f47cb96753145b6a40f0ebfd45bf77a6a5b71845 (patch) | |
tree | 01235ed321469a06f7b39aaf9ba3b0721dcba221 /settings | |
parent | da11931815be81d3585d32950feab1f03796c22f (diff) | |
download | nextcloud-server-f47cb96753145b6a40f0ebfd45bf77a6a5b71845.tar.gz nextcloud-server-f47cb96753145b6a40f0ebfd45bf77a6a5b71845.zip |
add Settings label to users settings for consistency
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
Diffstat (limited to 'settings')
-rw-r--r-- | settings/templates/users/main.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/settings/templates/users/main.php b/settings/templates/users/main.php index 59ddf6a1dd7..4fd8572029a 100644 --- a/settings/templates/users/main.php +++ b/settings/templates/users/main.php @@ -38,14 +38,14 @@ translation('settings'); <?php print_unescaped($this->inc('users/part.grouplist')); ?> <div id="app-settings"> <div id="app-settings-header"> - <button class="settings-button" tabindex="0" data-apps-slide-toggle="#app-settings-content"></button> + <button class="settings-button" tabindex="0" data-apps-slide-toggle="#app-settings-content"><?php p($l->t('Settings'));?></button> </div> <div id="app-settings-content"> <?php print_unescaped($this->inc('users/part.setquota')); ?> <div id="userlistoptions"> <p> - <input type="checkbox" name="StorageLocation" value="StorageLocation" id="CheckboxStorageLocation" + <input type="checkbox" name="StorageLocation" value="StorageLocation" id="CheckboxStorageLocation" class="checkbox" <?php if ($_['show_storage_location'] === 'true') print_unescaped('checked="checked"'); ?> /> <label for="CheckboxStorageLocation"> <?php p($l->t('Show storage location')) ?> |