Merge pull request #5492 from owncloud/admin-forcesslwrongid

Fixed wrong id when reading checkbox value for force SSL setting
remotes/origin/stable6
Thomas Müller 12 years ago
commit 30cf7fee11
  1. 2
      settings/js/admin.js

@ -32,6 +32,6 @@ $(document).ready(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…
Cancel
Save