@@ -, +, @@ --- opac/opac-search.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/opac/opac-search.pl +++ a/opac/opac-search.pl @@ -652,7 +652,7 @@ for (my $i=0;$i<@servers;$i++) { $newsearchcookie = $cgi->cookie( -name => 'KohaOpacRecentSearches', # We uri_escape the whole freezed structure so we're sure we won't have any encoding problems - -value =>freeze(\@recentSearches), + -value => uri_escape( freeze(\@recentSearches) ), -expires => '' ); $cookie = [$cookie, $newsearchcookie]; --