From 8d7a4496455b5f6d37c2cece161d768e480e92dc Mon Sep 17 00:00:00 2001 From: yqjiang Date: Fri, 18 Oct 2013 13:57:37 +0000 Subject: [PATCH] add xss filter to the title --- islandora.module | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/islandora.module b/islandora.module index ba5ec91e..1d951b74 100644 --- a/islandora.module +++ b/islandora.module @@ -993,7 +993,7 @@ function islandora_drupal_title(AbstractObject $object) { module_load_include('inc', 'islandora', 'includes/breadcrumb'); drupal_set_breadcrumb(islandora_get_breadcrumbs($object)); - return $object->label; + return filter_xss($object->label); } /**