From 0fb0b85f8c692e5fa85a3d0a10c63745d41728b6 Mon Sep 17 00:00:00 2001
From: Demian Katz <demian.katz@villanova.edu>
Date: Wed, 13 May 2015 13:45:22 -0400
Subject: [PATCH] Fixed double encoding bug.

---
 module/VuFind/src/VuFind/Hierarchy/TreeDataSource/Solr.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/module/VuFind/src/VuFind/Hierarchy/TreeDataSource/Solr.php b/module/VuFind/src/VuFind/Hierarchy/TreeDataSource/Solr.php
index 1947ff51c2e..bff8f2fc3b3 100644
--- a/module/VuFind/src/VuFind/Hierarchy/TreeDataSource/Solr.php
+++ b/module/VuFind/src/VuFind/Hierarchy/TreeDataSource/Solr.php
@@ -290,7 +290,7 @@ class Solr extends AbstractBase
                 'type' => $current->isCollection()
                     ? 'collection'
                     : 'record',
-                'title' => htmlspecialchars($title)
+                'title' => $title
             ];
             if ($current->isCollection()) {
                 $children = $this->getChildrenJson(
-- 
GitLab