summaryrefslogtreecommitdiff
path: root/update.php
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2010-01-11 17:34:29 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2010-01-11 17:34:29 +0000
commit26417f9d0793c14c765481dfc10c7826562a39f1 (patch)
treeba6946869f0c752aabf0d47bab4009815ff357d7 /update.php
parentea952f0eb36a96f0c66d321f9d667a526717a88d (diff)
downloadbrdo-26417f9d0793c14c765481dfc10c7826562a39f1.tar.gz
brdo-26417f9d0793c14c765481dfc10c7826562a39f1.tar.bz2
#680422 by Heine: Fixed request_uri() can not be used as is in HTML.
Diffstat (limited to 'update.php')
-rw-r--r--update.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/update.php b/update.php
index 010e90195..7ad82f583 100644
--- a/update.php
+++ b/update.php
@@ -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();
}