Bugzilla – Attachment 52158 Details for
Bug 16680
Library name are not displayed for holds in transit
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 16680: (bug 13918 follow-up) Display library names for holds in transit
Bug-16680-bug-13918-follow-up-Display-library-name.patch (text/plain), 2.41 KB, created by
Kyle M Hall (khall)
on 2016-06-07 15:53:03 UTC
(
hide
)
Description:
Bug 16680: (bug 13918 follow-up) Display library names for holds in transit
Filename:
MIME Type:
Creator:
Kyle M Hall (khall)
Created:
2016-06-07 15:53:03 UTC
Size:
2.41 KB
patch
obsolete
>From fa9a6f456a1c8f8563f521083d61528104fecb77 Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Tue, 7 Jun 2016 10:45:35 +0100 >Subject: [PATCH] Bug 16680: (bug 13918 follow-up) Display library names for > holds in transit > >Regression introduced by bug 13918: the library names are not displayed >anymore for holds in transit. >They are 2 warns in the logs: >No method wbrname! at >/home/koha/src/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-user.tt >line 603. >No method wbrcd! at >/home/koha/src/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-user.tt >line 603. > >Test plan: >Make sure you have holds in transit and go the opac-user.pl >In the "Holds" tab, you should see "Item in transit to LIBRARY NAME" > >Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> >--- > koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-user.tt | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > >diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-user.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-user.tt >index f31f47e..264641f 100644 >--- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-user.tt >+++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-user.tt >@@ -597,10 +597,10 @@ > [% END %] > <input type="hidden" name="pickup" value="[% RESERVE.branchcode %]" /> > [% ELSE %] >- Item waiting to be pulled from <b> [% RESERVE.wbrname %]</b> >+ Item waiting to be pulled from <b> [% Branches.GetName( RESERVE.branchcode ) %]</b> > [% END %] > [% ELSE %] >- Item in transit to <b> [% RESERVE.wbrname %]</b> <input type="hidden" name="pickup" value="[% RESERVE.wbrcd %]" /> >+ Item in transit to <b> [% Branches.GetName( RESERVE.branchcode ) %]</b> <input type="hidden" name="pickup" value="[% RESERVE.branchcode %]" /> > [% END %] > [% ELSE %] > [% IF ( RESERVE.is_in_transit ) %] >-- >2.1.4
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 16680
:
52116
|
52158
|
52544