Skip to content

Commit

Permalink
MDL-69973 xmldb: Ensure all reports use fresh metadata (not cached)
Browse files Browse the repository at this point in the history
  • Loading branch information
stronk7 committed Oct 30, 2020
1 parent 462fe3e commit 864ddb7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion admin/tool/xmldb/actions/XMLDBCheckAction.class.php
Expand Up @@ -149,7 +149,7 @@ function invoke() {
continue;
}
// Fetch metadata from physical DB. All the columns info.
if (!$metacolumns = $DB->get_columns($xmldb_table->getName())) {
if (!$metacolumns = $DB->get_columns($xmldb_table->getName(), false)) {
// / Skip table if no metacolumns is available for it
continue;
}
Expand Down

0 comments on commit 864ddb7

Please sign in to comment.