From 864ddb77c5b044f7828d946593afddd4867a8fae Mon Sep 17 00:00:00 2001 From: "Eloy Lafuente (stronk7)" Date: Sun, 18 Oct 2020 11:59:59 +0200 Subject: [PATCH] MDL-69973 xmldb: Ensure all reports use fresh metadata (not cached) --- admin/tool/xmldb/actions/XMLDBCheckAction.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin/tool/xmldb/actions/XMLDBCheckAction.class.php b/admin/tool/xmldb/actions/XMLDBCheckAction.class.php index 2514c6170ed..5ffc70e3f7f 100644 --- a/admin/tool/xmldb/actions/XMLDBCheckAction.class.php +++ b/admin/tool/xmldb/actions/XMLDBCheckAction.class.php @@ -149,7 +149,7 @@ abstract class XMLDBCheckAction extends XMLDBAction { 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; }