From 287674851f23ea7ca467ce8d9e76ff5219764f62 Mon Sep 17 00:00:00 2001 From: Stefan-Alexander Scholz Date: Mon, 4 Dec 2023 10:21:06 +0100 Subject: [PATCH] Fix supported version number syntax --- version.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.php b/version.php index ee94588..6fa1497 100644 --- a/version.php +++ b/version.php @@ -28,5 +28,5 @@ $plugin->requires = 2022041900; // Requires this Moodle version. $plugin->release = 'Version 1.3'; $plugin->component = 'format_kickstart'; // Full name of the plugin (used for diagnostics). -$plugin->supported = [40, 403]; +$plugin->supported = [400, 403]; $plugin->maturity = MATURITY_STABLE;