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

merge-requests/26/head
Angie Byron 2010-01-11 17:34:29 +00:00
parent ea952f0eb3
commit 26417f9d07
1 changed files with 1 additions and 1 deletions

View File

@ -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();
}