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;