Fixed wrong id when reading checkbox value for force SSL setting
Fixes #5488
This commit is contained in:
parent
2d14daf36b
commit
5aeafab9ab
|
@ -32,6 +32,6 @@ $(document).ready(function(){
|
||||||
});
|
});
|
||||||
|
|
||||||
$('#security').change(function(){
|
$('#security').change(function(){
|
||||||
$.post(OC.filePath('settings','ajax','setsecurity.php'), { enforceHTTPS: $('#enforceHTTPSEnabled').val() },function(){} );
|
$.post(OC.filePath('settings','ajax','setsecurity.php'), { enforceHTTPS: $('#forcessl').val() },function(){} );
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue