View | Details | Raw Unified | Return to bug 10070
Collapse All | Expand All

(-)a/opac/opac-search.pl (-2 / +1 lines)
Lines 652-658 for (my $i=0;$i<@servers;$i++) { Link Here
652
                $newsearchcookie = $cgi->cookie(
652
                $newsearchcookie = $cgi->cookie(
653
                            -name => 'KohaOpacRecentSearches',
653
                            -name => 'KohaOpacRecentSearches',
654
                            # We uri_escape the whole freezed structure so we're sure we won't have any encoding problems
654
                            # We uri_escape the whole freezed structure so we're sure we won't have any encoding problems
655
                            -value => uri_escape_utf8(freeze(\@recentSearches)),
655
                            -value =>freeze(\@recentSearches),
656
                            -expires => ''
656
                            -expires => ''
657
                );
657
                );
658
                $cookie = [$cookie, $newsearchcookie];
658
                $cookie = [$cookie, $newsearchcookie];
659
- 

Return to bug 10070