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

(-)a/circ/waitingreserves.pl (-1 / +2 lines)
Lines 160-168 $template->param( Link Here
160
    overcount   => $overcount,
160
    overcount   => $overcount,
161
    show_date   => output_pref({ dt => dt_from_string, dateformat => 'iso', dateonly => 1 }),
161
    show_date   => output_pref({ dt => dt_from_string, dateformat => 'iso', dateonly => 1 }),
162
    ReservesMaxPickUpDelay => $max_pickup_delay,
162
    ReservesMaxPickUpDelay => $max_pickup_delay,
163
    tab => $tab,
163
);
164
);
164
165
165
if ($item && $tab eq 'holdsover') {
166
if ($item && $tab eq 'holdsover' && !@cancel_result) {
166
    print $input->redirect("/cgi-bin/koha/circ/waitingreserves.pl#holdsover");
167
    print $input->redirect("/cgi-bin/koha/circ/waitingreserves.pl#holdsover");
167
} elsif ($cancelall) {
168
} elsif ($cancelall) {
168
    print $input->redirect("/cgi-bin/koha/circ/waitingreserves.pl");
169
    print $input->redirect("/cgi-bin/koha/circ/waitingreserves.pl");
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/waitingreserves.tt (-5 / +4 lines)
Lines 51-58 Link Here
51
                    <p><strong>[% nextreservtitle %]</strong> is on hold for <strong> [% nextreservsurname %], [% nextreservfirstname %]</strong>.
51
                    <p><strong>[% nextreservtitle %]</strong> is on hold for <strong> [% nextreservsurname %], [% nextreservfirstname %]</strong>.
52
                    Please retain this item and check it in to process the hold.
52
                    Please retain this item and check it in to process the hold.
53
                    </p>
53
                    </p>
54
                    <form name="cancelReservewithtransfert" action="waitingreserves.pl" method="post">
54
                    <form name="cancelReservewithtransfert" action="waitingreserves.p#[% tab %]" method="post">
55
                        <input type="submit" class="submit" value="OK" />
55
                        <input class="btn" type="submit" class="submit" value="OK" />
56
                    </form>
56
                    </form>
57
                </div>
57
                </div>
58
            [% END %]
58
            [% END %]
Lines 62-69 Link Here
62
                    <p><strong>[% nextreservtitle %]</strong> is on hold for <strong>[% nextreservsurname %], [% nextreservfirstname %]</strong>.
62
                    <p><strong>[% nextreservtitle %]</strong> is on hold for <strong>[% nextreservsurname %], [% nextreservfirstname %]</strong>.
63
                    Please retain this item and check it in to process the hold.
63
                    Please retain this item and check it in to process the hold.
64
                    </p>
64
                    </p>
65
                    <form name="cancelReservewithwaiting" action="waitingreserves.pl" method="post">
65
                    <form name="cancelReservewithwaiting" action="waitingreserves.pl#[% tab %]" method="post">
66
                        <input type="submit" class="submit" value="OK"/>
66
                        <input class="btn" type="submit" class="submit" value="OK"/>
67
                    </form>
67
                    </form>
68
                </div>
68
                </div>
69
            [% END %]
69
            [% END %]
70
- 

Return to bug 17010