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

(-)a/opac/opac-authorities-home.pl (-1 / +1 lines)
Lines 123-131 Link Here
123
    }
123
    }
124
124
125
    # Opac search history
125
    # Opac search history
126
    if (C4::Context->preference('EnableOpacSearchHistory')) {
126
    if (C4::Context->preference('EnableOpacSearchHistory')) {
127
        unless ( $startfrom ) {
127
        if ( $startfrom == 1) {
128
            my $path_info = $query->url(-path_info=>1);
128
            my $path_info = $query->url(-path_info=>1);
129
            my $query_cgi_history = $query->url(-query=>1);
129
            my $query_cgi_history = $query->url(-query=>1);
130
            $query_cgi_history =~ s/^$path_info\?//;
130
            $query_cgi_history =~ s/^$path_info\?//;
131
            $query_cgi_history =~ s/;/&/g;
131
            $query_cgi_history =~ s/;/&/g;

Return to bug 18204