Version bump and codechecker fixes.

This commit is contained in:
abhinavgandham
2026-01-20 15:31:33 +10:00
committed by Brendan Heywood
parent 6ca7cb6d7e
commit bf51ff6de9
3 changed files with 6 additions and 7 deletions

View File

@@ -136,7 +136,7 @@ class edit extends moodleform {
}
$outagedata = [
'id' => ($data->id === 0) ? null : $data->id,
// 'autostart' => (isset($data->autostart) && ($data->autostart == 1)),
'autostart' => (isset($data->autostart) && ($data->autostart == 1)),
'starttime' => $data->starttime,
'stoptime' => $data->starttime + $data->outageduration,
'warntime' => $data->starttime - $data->warningduration,
@@ -161,7 +161,7 @@ class edit extends moodleform {
if ($outage instanceof outage) {
$this->_form->setDefaults([
'id' => $outage->id,
// 'autostart' => $outage->autostart,
'autostart' => $outage->autostart,
'starttime' => $outage->starttime,
'outageduration' => $outage->get_duration_planned(),
'warningduration' => $outage->get_warning_duration(),

View File

@@ -75,13 +75,12 @@ function xmldb_auth_outage_upgrade($oldversion) {
upgrade_plugin_savepoint(true, 2026011301, 'auth', 'outage');
}
if ($oldversion < 2024081902) {
if ($oldversion < 2026011302) {
// Removing the default_autostart config as it is no longer used.
unset_config('default_autostart', 'auth_outage');
// Outage savepoint reached.
upgrade_plugin_savepoint(true, 2024081902, 'auth', 'outage');
upgrade_plugin_savepoint(true, 2026011302, 'auth', 'outage');
}
return true;

View File

@@ -28,8 +28,8 @@
defined('MOODLE_INTERNAL') || die();
$plugin->component = "auth_outage";
$plugin->version = 2026011301; // The current plugin version (Date: YYYYMMDDXX).
$plugin->release = 2026011301; // Human-readable release information.
$plugin->version = 2026011302; // The current plugin version (Date: YYYYMMDDXX).
$plugin->release = 2026011302; // Human-readable release information.
$plugin->requires = 2025100600; // Moodle 5.1.
$plugin->maturity = MATURITY_STABLE; // Suitable for PRODUCTION environments!
$plugin->supported = [501, 501]; // A range of branch numbers of supported moodle versions.