Add a hint that the settings are OR based
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
30610aa615
commit
8069c52a85
|
@ -145,6 +145,7 @@ window.addEventListener('DOMContentLoaded', function(){
|
||||||
$('#shareapi_allow_share_dialog_user_enumeration').on('change', function() {
|
$('#shareapi_allow_share_dialog_user_enumeration').on('change', function() {
|
||||||
$('#shareapi_restrict_user_enumeration_to_group_setting').toggleClass('hidden', !this.checked);
|
$('#shareapi_restrict_user_enumeration_to_group_setting').toggleClass('hidden', !this.checked);
|
||||||
$('#shareapi_restrict_user_enumeration_to_phone_setting').toggleClass('hidden', !this.checked);
|
$('#shareapi_restrict_user_enumeration_to_phone_setting').toggleClass('hidden', !this.checked);
|
||||||
|
$('#shareapi_restrict_user_enumeration_combinewarning_setting').toggleClass('hidden', !this.checked);
|
||||||
})
|
})
|
||||||
|
|
||||||
$('#allowLinks').change(function() {
|
$('#allowLinks').change(function() {
|
||||||
|
|
|
@ -185,6 +185,11 @@
|
||||||
} ?> />
|
} ?> />
|
||||||
<label for="shareapi_restrict_user_enumeration_to_phone"><?php p($l->t('Allow username autocompletion to users based on phonebook matches'));?></label><br />
|
<label for="shareapi_restrict_user_enumeration_to_phone"><?php p($l->t('Allow username autocompletion to users based on phonebook matches'));?></label><br />
|
||||||
</p>
|
</p>
|
||||||
|
<p id="shareapi_restrict_user_enumeration_combinewarning_setting" class="indent <?php if ($_['shareAPIEnabled'] === 'no' || $_['allowShareDialogUserEnumeration'] === 'no') {
|
||||||
|
p('hidden');
|
||||||
|
}?>">
|
||||||
|
<em><?php p($l->t('If autocompletion "same group" and "phonebook matches" are enabled a match in either is enough to show the user.'));?></em><br />
|
||||||
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
<input type="checkbox" id="publicShareDisclaimer" class="checkbox noJSAutoUpdate"
|
<input type="checkbox" id="publicShareDisclaimer" class="checkbox noJSAutoUpdate"
|
||||||
|
|
Loading…
Reference in New Issue