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

Fixed escaping problem.

parent da7feaf1
No related merge requests found
......@@ -11,5 +11,5 @@
$this->layout()->searchbox = $this->context($this)->renderInContext('search/searchbox.phtml', array('searchClassId' => 'Solr'));
// Set up breadcrumbs:
$this->layout()->breadcrumbs = '<li><a href="' . $this->url('author-home') . '">' . $this->transEsc('Author') . '</a></li><li class="active">' . $this->params->getDisplayQuery() . '</li>';
$this->layout()->breadcrumbs = '<li><a href="' . $this->url('author-home') . '">' . $this->transEsc('Author') . '</a></li><li class="active">' . $this->escapeHtml($this->params->getDisplayQuery()) . '</li>';
?>
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