diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-05-08 19:26:20 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2014-06-03 12:42:36 +0200 |
commit | de012667c7e1a99895bb8766dc07fc1a0c4a6e88 (patch) | |
tree | 57256ef1770c3106fe0d71f58bb5a5470aa506f6 /settings/templates/apps.php | |
parent | 49f1e4a81172805ca9f084d82fce40286671ce8a (diff) | |
download | nextcloud-server-de012667c7e1a99895bb8766dc07fc1a0c4a6e88.tar.gz nextcloud-server-de012667c7e1a99895bb8766dc07fc1a0c4a6e88.zip |
Apps: fix wording and layout for 'enable only for specific groups'
Diffstat (limited to 'settings/templates/apps.php')
-rw-r--r-- | settings/templates/apps.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/settings/templates/apps.php b/settings/templates/apps.php index c5c0b91be69..a766275fa53 100644 --- a/settings/templates/apps.php +++ b/settings/templates/apps.php @@ -53,15 +53,15 @@ print_unescaped($l->t('<span class="licence"></span>-licensed by <span class="author"></span>'));?></p> <input class="enable hidden" type="submit" /> <input class="update hidden" type="submit" value="<?php p($l->t('Update')); ?>" /> - <br /> + <input class="hidden" type="checkbox" id="groups_enable"/> - <label class="hidden" for="groups_enable"><?php p($l->t('Only for specific groups')); ?></label> - <br /> + <label class="hidden" for="groups_enable"><?php p($l->t('Enable only for specific groups')); ?></label> <select class="hidden" id="group_select" multiple="multiple" title="<?php p($l->t('All')); ?>"> <?php foreach($_['groups'] as $group):?> <option value="<?php p($group);?>"><?php p($group); ?></option> <?php endforeach;?> </select> + <div class="warning hidden"></div> </div> </div> |