* Reseed:

- Update host lists
    - Switch back to https by default
This commit is contained in:
zzz
2011-10-06 16:06:52 +00:00
parent 2332ac2a69
commit 0c3f84c2da
2 changed files with 12 additions and 13 deletions

View File

@ -52,7 +52,7 @@ public class ConfigReseedHelper extends HelperBase {
public String modeChecked(int mode) {
boolean required = _context.getBooleanProperty(Reseeder.PROP_SSL_REQUIRED);
boolean disabled = _context.getBooleanPropertyDefaultTrue(Reseeder.PROP_SSL_DISABLE);
boolean disabled = _context.getBooleanProperty(Reseeder.PROP_SSL_DISABLE);
if ((mode == 0 && (!disabled) && (!required)) ||
(mode == 1 && (!disabled) && required) ||
(mode == 2 && disabled))