Skip to content

Commit

Permalink
Merge branch 'MDL-79364-402' of https://github.com/ilyatregubov/moodle
Browse files Browse the repository at this point in the history
…into MOODLE_402_STABLE
  • Loading branch information
junpataleta committed Oct 3, 2023
2 parents 48d4645 + 3d6061c commit 3acc4f9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion backup/converter/moodle1/handlerlib.php
Expand Up @@ -867,7 +867,9 @@ public function process_course_module($data, $raw) {
$plugin->version = null;
$module = $plugin;
include($versionfile);
$data['version'] = $plugin->version;
// Have to hardcode - since quiz uses some hardcoded version numbers when restoring.
// This is the lowest number used minus one.
$data['version'] = 2011010099;
} else {
$data['version'] = null;
}
Expand Down

0 comments on commit 3acc4f9

Please sign in to comment.