Skip to content

Commit

Permalink
MDL-82659 quiz: Fix indentation syntax.
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Kotlyar committed Aug 20, 2024
1 parent dd60f4f commit 1193299
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions mod/quiz/accessrule/seb/classes/settings_provider.php
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,7 @@ public static function is_conflicting_permissions(\context $context) {
}

if (!self::can_use_seb_template($context) &&
$settings->get('requiresafeexambrowser') == self::USE_SEB_TEMPLATE) {
$settings->get('requiresafeexambrowser') == self::USE_SEB_TEMPLATE) {
return true;
}

Expand All @@ -545,12 +545,12 @@ public static function is_conflicting_permissions(\context $context) {
}

if (!self::can_upload_seb_file($context) &&
$settings->get('requiresafeexambrowser') == self::USE_SEB_UPLOAD_CONFIG) {
$settings->get('requiresafeexambrowser') == self::USE_SEB_UPLOAD_CONFIG) {
return true;
}

if (!self::can_configure_manually($context) &&
$settings->get('requiresafeexambrowser') == self::USE_SEB_CONFIG_MANUALLY) {
$settings->get('requiresafeexambrowser') == self::USE_SEB_CONFIG_MANUALLY) {
return true;
}

Expand Down

0 comments on commit 1193299

Please sign in to comment.