Merge branch 'MDL-70931-master-xmldbeol' of git://github.com/mudrd8mz/moodle

This commit is contained in:
Eloy Lafuente (stronk7) 2021-03-01 10:00:27 +01:00
commit b7d3e56d7e
2 changed files with 2 additions and 2 deletions

View File

@ -93,7 +93,7 @@ class create_xml_file extends XMLDBAction {
$c.= ' </KEYS>' . "\n";
$c.= ' </TABLE>' . "\n";
$c.= ' </TABLES>' . "\n";
$c.= ' </XMLDB>';
$c.= ' </XMLDB>' . "\n";
if (!file_put_contents($file, $c)) {
$errormsg = 'Error creando fichero ' . $file;

View File

@ -359,7 +359,7 @@ class xmldb_structure extends xmldb_object {
}
$o.= ' </TABLES>' . "\n";
}
$o.= '</XMLDB>';
$o.= '</XMLDB>' . "\n";
return $o;
}