From e167a488a0b0cb6851532a3119b3bed25e2bf524 Mon Sep 17 00:00:00 2001 From: Stephan Robotta Date: Fri, 13 Sep 2024 12:58:52 +0200 Subject: [PATCH] Fix missing include and cast new release 0.3 --- README.md | 4 ++++ export.php | 1 + version.php | 4 ++-- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 491d8d1..477c546 100644 --- a/README.md +++ b/README.md @@ -33,6 +33,10 @@ See http://docs.moodle.org/en/Installing_plugins for details on installing Moodl ## Version History +### 0.3 + +- Fix missing include. + ### 0.2 - Added ci of Moodle 4.4. diff --git a/export.php b/export.php index 4fac965..33527f1 100644 --- a/export.php +++ b/export.php @@ -23,6 +23,7 @@ */ require_once(__DIR__ . '/../../../config.php'); +require_once(__DIR__ . '/../../editlib.php'); require_once($CFG->libdir . '/questionlib.php'); require_once($CFG->dirroot . '/question/format/xml/format.php'); diff --git a/version.php b/version.php index 90d2b60..d3b7116 100644 --- a/version.php +++ b/version.php @@ -25,8 +25,8 @@ defined('MOODLE_INTERNAL') || die(); $plugin->component = 'qbank_bulkxmlexport'; -$plugin->release = '0.2'; -$plugin->version = 2024091200; +$plugin->release = '0.3'; +$plugin->version = 2024091300; $plugin->requires = 2024041200; $plugin->supported = [404, 404]; $plugin->maturity = MATURITY_RC;