summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authorSteven Wittens <steven@10.no-reply.drupal.org>2006-04-07 15:32:17 +0000
committerSteven Wittens <steven@10.no-reply.drupal.org>2006-04-07 15:32:17 +0000
commit9794b5538e2baee159d360c9f7125f178591659a (patch)
treec73a591ff817a3466ddea66391c664768022aa29 /includes
parent77dc67ec9218b9eb6dd8a88f8d81d15312ce3d3c (diff)
downloadbrdo-9794b5538e2baee159d360c9f7125f178591659a.tar.gz
brdo-9794b5538e2baee159d360c9f7125f178591659a.tar.bz2
- #55898: Generic, permissive admin XSS/HTML filtering for mission/footer/...
- Clean up some raw output
Diffstat (limited to 'includes')
-rw-r--r--includes/common.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/common.inc b/includes/common.inc
index 0aa3a2c6e..5ffaa4444 100644
--- a/includes/common.inc
+++ b/includes/common.inc
@@ -244,8 +244,8 @@ function drupal_goto($path = '', $query = NULL, $fragment = NULL) {
function drupal_site_offline() {
drupal_set_header('HTTP/1.0 503 Service unavailable');
drupal_set_title(t('Site off-line'));
- print theme('maintenance_page', variable_get('site_offline_message',
- t('%site is currently under maintenance. We should be back shortly. Thank you for your patience.', array('%site' => variable_get('site_name', t('This Drupal site'))))));
+ print theme('maintenance_page', filter_xss_admin(variable_get('site_offline_message',
+ t('%site is currently under maintenance. We should be back shortly. Thank you for your patience.', array('%site' => variable_get('site_name', t('This Drupal site')))))));
}
/**