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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/labels/search.tt (-3 / +2 lines)
Lines 19-27 Link Here
19
            [% END %]
19
            [% END %]
20
        </h1>
20
        </h1>
21
21
22
        <form name="f" method="post" action="/cgi-bin/koha/labels/label-item-search.pl">
22
        <form name="f" method="get" action="/cgi-bin/koha/labels/label-item-search.pl">
23
            [% INCLUDE 'csrf-token.inc' %]
23
            <input type="hidden" name="op" value="do_search" />
24
            <input type="hidden" name="op" value="cud-do_search" />
25
            <input type="hidden" name="batch_id" value="[% batch_id | html %]" />
24
            <input type="hidden" name="batch_id" value="[% batch_id | html %]" />
26
            <input type="hidden" name="type" value="[% type | html %]" />
25
            <input type="hidden" name="type" value="[% type | html %]" />
27
26
(-)a/labels/label-item-search.pl (-2 / +1 lines)
Lines 55-61 my $display_columns = [ {_add => {label => "Add Item", link_fi Link Here
55
                        {select                 => {label => "Select", value => "_item_number"}},
55
                        {select                 => {label => "Select", value => "_item_number"}},
56
                      ];
56
                      ];
57
57
58
if ( $op eq "cud-do_search" ) {
58
if ( $op eq "do_search" ) {
59
    $idx         = $query->param('idx');
59
    $idx         = $query->param('idx');
60
    $ccl_textbox = $query->param('ccl_textbox');
60
    $ccl_textbox = $query->param('ccl_textbox');
61
    if ( $ccl_textbox && $idx ) {
61
    if ( $ccl_textbox && $idx ) {
62
- 

Return to bug 36931