Skip to content

Commit

Permalink
Fix missing include and cast new release 0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
srobotta committed Sep 13, 2024
1 parent 199ca70 commit e167a48
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
1 change: 1 addition & 0 deletions export.php
Original file line number Diff line number Diff line change
Expand Up @@ -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');

Expand Down
4 changes: 2 additions & 2 deletions version.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;

0 comments on commit e167a48

Please sign in to comment.