1
0
Mirror von https://github.com/nextcloud/server.git synchronisiert 2024-07-31 08:15:55 +02:00

LDAP: fix setting value of checkbox after loading configuration

Dieser Commit ist enthalten in:
Arthur Schiwon 2013-05-31 20:06:40 +02:00
Ursprung d636e168a6
Commit c49ee4d3e3

Datei anzeigen

@ -14,7 +14,7 @@ var LdapConfiguration = {
//deal with Checkboxes
if($(elementID).is('input[type=checkbox]')) {
if(configvalue === 1) {
if(parseInt(configvalue) === 1) {
$(elementID).attr('checked', 'checked');
} else {
$(elementID).removeAttr('checked');