From 1193299387055bd41b0ad3a165c55c8119a2d93b Mon Sep 17 00:00:00 2001 From: Michael Kotlyar Date: Tue, 20 Aug 2024 10:40:43 +0100 Subject: [PATCH] MDL-82659 quiz: Fix indentation syntax. --- mod/quiz/accessrule/seb/classes/settings_provider.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mod/quiz/accessrule/seb/classes/settings_provider.php b/mod/quiz/accessrule/seb/classes/settings_provider.php index 80dc3c1e8b65..8e50cbb6db95 100644 --- a/mod/quiz/accessrule/seb/classes/settings_provider.php +++ b/mod/quiz/accessrule/seb/classes/settings_provider.php @@ -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; } @@ -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; }