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

(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-authorities-home.tt (-2 / +2 lines)
Lines 32-40 Link Here
32
                    <div class="col order-first order-md-first order-lg-2">
32
                    <div class="col order-first order-md-first order-lg-2">
33
                [% END %]
33
                [% END %]
34
                    <div id="userauthhome" class="maincontent">
34
                    <div id="userauthhome" class="maincontent">
35
                        <form name="f" action="/cgi-bin/koha/opac-authorities-home.pl" method="post">
35
                        <form name="f" action="/cgi-bin/koha/opac-authorities-home.pl" method="get">
36
                            [% INCLUDE 'csrf-token.inc' %]
36
                            [% INCLUDE 'csrf-token.inc' %]
37
                            <input type="hidden" name="op" value="cud-do_search" />
37
                            <input type="hidden" name="op" value="do_search" />
38
                            <input type="hidden" name="type" value="opac" />
38
                            <input type="hidden" name="type" value="opac" />
39
                            <fieldset class="rows">
39
                            <fieldset class="rows">
40
                                <legend><h1>Authority search</h1></legend>
40
                                <legend><h1>Authority search</h1></legend>
(-)a/opac/opac-authorities-home.pl (-2 / +1 lines)
Lines 48-54 my ( $template, $loggedinuser, $cookie ); Link Here
48
48
49
my $authority_types = Koha::Authority::Types->search({}, { order_by => ['authtypetext']});
49
my $authority_types = Koha::Authority::Types->search({}, { order_by => ['authtypetext']});
50
50
51
if ( $op eq "cud-do_search" ) {
51
if ( $op eq "do_search" ) {
52
    my @input_marclist = $query->multi_param('marclist');
52
    my @input_marclist = $query->multi_param('marclist');
53
    my @and_or = $query->multi_param('and_or');
53
    my @and_or = $query->multi_param('and_or');
54
    my @excluding = $query->multi_param('excluding');
54
    my @excluding = $query->multi_param('excluding');
55
- 

Return to bug 37069