Skip to content
Snippets Groups Projects
Commit 26417f9d authored by Angie Byron's avatar Angie Byron
Browse files

#680422 by Heine: Fixed request_uri() can not be used as is in HTML.

parent ea952f0e
No related branches found
No related tags found
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
......@@ -278,7 +278,7 @@ function update_check_requirements() {
update_task_list('requirements');
drupal_set_title('Requirements problem');
$status_report = theme('status_report', array('requirements' => $requirements));
$status_report .= 'Check the error messages and <a href="' . request_uri() . '">try again</a>.';
$status_report .= 'Check the error messages and <a href="' . check_url(request_uri()) . '">try again</a>.';
print theme('update_page', array('content' => $status_report));
exit();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment