diff options
author | Morris Jobke <hey@morrisjobke.de> | 2017-05-19 12:05:09 -0500 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2017-05-19 12:05:09 -0500 |
commit | c7ade8598203c49fabeef16667282260b73a60a3 (patch) | |
tree | 85f11b780e383d21f52b5bf6aa7f01e4e680a79d /settings/templates/apps.php | |
parent | 7eb8b3cec1738edb59fd3c3870d1747b6d2e1cd3 (diff) | |
download | nextcloud-server-c7ade8598203c49fabeef16667282260b73a60a3.tar.gz nextcloud-server-c7ade8598203c49fabeef16667282260b73a60a3.zip |
Fix group restriction regression
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'settings/templates/apps.php')
-rw-r--r-- | settings/templates/apps.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/settings/templates/apps.php b/settings/templates/apps.php index 260b042c078..e32a524f78a 100644 --- a/settings/templates/apps.php +++ b/settings/templates/apps.php @@ -59,7 +59,7 @@ script( <div class="groups-enable"> <input type="checkbox" class="groups-enable__checkbox checkbox" id="groups_enable-{{id}}"/> <label for="groups_enable-{{id}}"><?php p($l->t('Limit to groups')); ?></label> - <input type="hidden" id="group_select" title="<?php p($l->t('All')); ?>"> + <input type="hidden" class="group_select" title="<?php p($l->t('All')); ?>"> </div> {{/if}} </div> @@ -182,7 +182,7 @@ script( <input type="checkbox" class="groups-enable__checkbox checkbox" id="groups_enable-{{id}}"/> <label for="groups_enable-{{id}}"><?php p($l->t('Enable only for specific groups')); ?></label> </div> - <input type="hidden" id="group_select" title="<?php p($l->t('All')); ?>" style="width: 200px"> + <input type="hidden" class="group_select" title="<?php p($l->t('All')); ?>" style="width: 200px"> {{else}} <input class="enable{{#if needsDownload}} needs-download{{/if}}" type="submit" data-appid="{{id}}" data-active="false" {{#unless canInstall}}disabled="disabled"{{/unless}} value="<?php p($l->t("Enable"));?>"/> {{/if}} |