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

(-)a/Koha/AudioAlert.pm (-1 / +1 lines)
Lines 27-33 use base qw(Koha::Object); Link Here
27
27
28
=head1 NAME
28
=head1 NAME
29
29
30
Koha::AudioAlert - Koha Borrower Object class
30
Koha::AudioAlert - Koha Audio Alert object class
31
31
32
=head1 API
32
=head1 API
33
33
(-)a/Koha/AudioAlerts.pm (-1 / +1 lines)
Lines 29-35 use base qw(Koha::Objects); Link Here
29
29
30
=head1 NAME
30
=head1 NAME
31
31
32
Koha::AudioAlert - Koha Borrower Object class
32
Koha::AudioAlerts - Koha Audio Alert object set class
33
33
34
=head1 API
34
=head1 API
35
35
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt (-2 / +1 lines)
Lines 271-277 $(document).ready(function () { Link Here
271
271
272
    [% IF ( transfer ) %]
272
    [% IF ( transfer ) %]
273
    <!-- transfer: item with no reservation, must be returned according to home library circulation rules -->
273
    <!-- transfer: item with no reservation, must be returned according to home library circulation rules -->
274
	<div id="return1" class="dialog message audio-alert-action">
274
        <div id="return1" class="dialog message audio-alert-action">
275
            <h3>Please return <a href="/cgi-bin/koha/catalogue/detail.pl?type=intra&amp;biblionumber=[% itembiblionumber %]">[% title or "item" |html %]</a> to [% Branches.GetName( returnbranch ) %]<br/>( <a href="#" onclick="Dopop('transfer-slip.pl?transferitem=[% itemnumber %]&amp;branchcode=[% returnbranch %]&amp;op=slip'); return true;">Print slip</a> )</h3>
275
            <h3>Please return <a href="/cgi-bin/koha/catalogue/detail.pl?type=intra&amp;biblionumber=[% itembiblionumber %]">[% title or "item" |html %]</a> to [% Branches.GetName( returnbranch ) %]<br/>( <a href="#" onclick="Dopop('transfer-slip.pl?transferitem=[% itemnumber %]&amp;branchcode=[% returnbranch %]&amp;op=slip'); return true;">Print slip</a> )</h3>
276
        </div>
276
        </div>
277
    [% END %]
277
    [% END %]
278
- 

Return to bug 11431