Skip to content
Snippets Groups Projects
Commit b411358b authored by Demian Katz's avatar Demian Katz
Browse files

Fixed double encoding bug.

parent 56550eab
Branches
Tags
No related merge requests found
...@@ -290,7 +290,7 @@ class Solr extends AbstractBase ...@@ -290,7 +290,7 @@ class Solr extends AbstractBase
'type' => $current->isCollection() 'type' => $current->isCollection()
? 'collection' ? 'collection'
: 'record', : 'record',
'title' => htmlspecialchars($title) 'title' => $title
]; ];
if ($current->isCollection()) { if ($current->isCollection()) {
$children = $this->getChildrenJson( $children = $this->getChildrenJson(
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment