Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion classes/manager.php
Original file line number Diff line number Diff line change
Expand Up @@ -614,7 +614,9 @@ public static function require_auth($courseorid = null, $autologinguest = null,

if (!self::is_ready()) {
// Set session var so if MFA becomes ready, you dont get locked from session.
$SESSION->tool_mfa_authenticated = true;
if (get_config('tool_mfa', 'enabled')) {
$SESSION->tool_mfa_authenticated = true;
}
return;
}

Expand Down
Loading