Fixed default parameter in configselect and updated 'Force off' lang string.

This commit is contained in:
abhinavgandham
2026-01-15 16:31:58 +10:00
parent fdd5569324
commit a8d496121f
2 changed files with 3 additions and 3 deletions

View File

@@ -47,11 +47,11 @@ if ($hassiteconfig) {
'auth_outage/default_autostart',
get_string('defaultoutageautostart', 'auth_outage'),
get_string('defaultoutageautostartdescription', 'auth_outage'),
'off',
'0',
[
'0' => get_string('autostartoff', 'auth_outage'),
'1' => get_string('autostarton', 'auth_outage'),
'2' => get_string('forceoff', 'auth_outage'),
'2' => get_string('autostartforcedoff', 'auth_outage'),
]
));