From c06d7bc2e589d237e51ae2e6d6d60dfa610cda84 Mon Sep 17 00:00:00 2001 From: rvelices Date: Tue, 30 Sep 2014 21:07:59 +0000 Subject: bug 3148: quick search fix html special chars git-svn-id: http://piwigo.org/svn/trunk@29852 68402e56-0260-453c-a942-63ccdbb3a9ee --- index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'index.php') diff --git a/index.php b/index.php index 1f524ed17..0e4f34ea4 100644 --- a/index.php +++ b/index.php @@ -245,7 +245,7 @@ if ( empty($page['is_external']) or !$page['is_external'] ) } elseif (!empty($page['qsearch_details']['unmatched_terms'])) { - $template->assign( 'no_search_results', array_map($page['qsearch_details']['unmatched_terms'], 'htmlspecialchars')); + $template->assign( 'no_search_results', array_map('htmlspecialchars', $page['qsearch_details']['unmatched_terms'])); } } -- cgit v1.2.3