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

(-)a/opac/opac-search-history.pl (-2 / +1 lines)
Lines 40-46 my ($template, $loggedinuser, $cookie) = get_template_and_user( Link Here
40
        template_name => "opac-search-history.tt",
40
        template_name => "opac-search-history.tt",
41
        query => $cgi,
41
        query => $cgi,
42
        type => "opac",
42
        type => "opac",
43
        authnotrequired => 1,
43
        authnotrequired => ( C4::Context->preference("OpacPublic") ? 1 : 0 ),
44
        flagsrequired => {borrowers => 1},
44
        flagsrequired => {borrowers => 1},
45
        debug => 1,
45
        debug => 1,
46
    }
46
    }
47
- 

Return to bug 18505