Skip to content
Snippets Groups Projects
Commit 8495750c authored by Steven Wittens's avatar Steven Wittens
Browse files

- #53540: Improve relative links updater

parent a4ae7a53
Branches
Tags
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -1746,6 +1746,12 @@ function system_update_178() {
}
}
// Any format with 'HTML' in its name
$result = db_query("SELECT format FROM {filter_formats} WHERE name LIKE '%HTML%'");
while ($format = db_fetch_object($result)) {
$formats[$format->format] = true;
}
if (count($formats) == 0) {
return array();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment