mirror of
https://github.com/webmin/webmin.git
synced 2025-08-19 01:15:14 +00:00
Add support for 'required' SSL option https://forum.virtualmin.com/t/license-in-question-after-failed-move-upgrade-attempt/112136/30
This commit is contained in:
@ -20,7 +20,9 @@ print &ui_table_row($text{'net_protocols'},
|
||||
$sslopt = &find("ssl_disable", $conf, 2) ? "ssl_disable" : "ssl";
|
||||
$dis = &find_value($sslopt, $conf);
|
||||
if ($sslopt eq "ssl") {
|
||||
@opts = ( [ "yes", $text{'yes'} ], [ "no", $text{'no'} ] );
|
||||
@opts = ( [ "yes", $text{'yes'} ],
|
||||
[ "required", $text{'net_ssl_required'} ],
|
||||
[ "no", $text{'no'} ] );
|
||||
}
|
||||
else {
|
||||
@opts = ( [ "no", $text{'yes'} ], [ "yes", $text{'no'} ] );
|
||||
|
Reference in New Issue
Block a user