From e2d0cf0caded58cbabc953db84fa1895e1aa3ac4 Mon Sep 17 00:00:00 2001 From: Alan Stanley Date: Mon, 10 Feb 2014 15:46:11 -0400 Subject: [PATCH] fixed how errors are displayed --- includes/utilities.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/utilities.inc b/includes/utilities.inc index 0710f8f3..e5d60b95 100644 --- a/includes/utilities.inc +++ b/includes/utilities.inc @@ -528,7 +528,7 @@ function islandora_display_repository_inaccessible_message() { $link = l($text, 'admin/islandora/configure', array('attributes' => array('title' => $text))); $message = t('Could not connect to the repository. Please check the settings on the !link page.', array('!link' => $link)); - drupal_set_message(check_plain($message), 'error', FALSE); + drupal_set_message(filter_xss($message), 'error', FALSE); }