From d2b2651ab4390aca82b182eccd6beb0aa639230e Mon Sep 17 00:00:00 2001 From: ewallah Date: Fri, 17 Nov 2023 10:47:42 +0100 Subject: [PATCH] Incompatible with 403 This branch does not work with MOODLE_403_STABLE nor with PHP 8.2. The tests in Github actions are showing a lot of errors: https://github.com/studentquiz/moodle-mod_studentquiz/actions/runs/6894358494/job/18755961223 However MOODLE_403_STABLE users get the message 'There is a new version 2023081702 available!' --- version.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/version.php b/version.php index 74ce754e..2b27e2f5 100644 --- a/version.php +++ b/version.php @@ -26,6 +26,8 @@ $plugin->version = 2023081702; $plugin->requires = 2022041900; // Version MOODLE_4.0. +$plugin->supported = [400, 402]; +$plugin->incompatible = 403; $plugin->component = 'mod_studentquiz'; $plugin->maturity = MATURITY_STABLE; $plugin->release = 'v5.2.0';