Bugzilla – Attachment 106516 Details for
Bug 25914
Relative's checkouts have empty title in OPAC
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 25914: Fix incorrect variable name causing relative's checkouts column to be empty in OPAC
Bug-25914-Fix-incorrect-variable-name-causing-rela.patch (text/plain), 2.10 KB, created by
Alex Arnaud
on 2020-07-03 14:05:16 UTC
(
hide
)
Description:
Bug 25914: Fix incorrect variable name causing relative's checkouts column to be empty in OPAC
Filename:
MIME Type:
Creator:
Alex Arnaud
Created:
2020-07-03 14:05:16 UTC
Size:
2.10 KB
patch
obsolete
>From 3c72fe46b009858c8d4c67f93f42fd6b6ddaa527 Mon Sep 17 00:00:00 2001 >From: Kyle M Hall <kyle@bywatersolutions.com> >Date: Thu, 2 Jul 2020 08:32:51 -0400 >Subject: [PATCH] Bug 25914: Fix incorrect variable name causing relative's > checkouts column to be empty in OPAC > >In the OPAC, the title column in the relatives checkouts table is always empty. > >Test Plan: >1) Enable viewing of relative's checkouts in OPAC >2) Check some items out to a patron >3) Log into the OPAC as a relative of that patron that should be able to > view them >4) Note the title column is empty in the relative's checkouts tab >5) Apply this patch >6) Reload the page >7) Titles should appear in the title column! > >Signed-off-by: Owen Leonard <oleonard@myacpl.org> >Signed-off-by: Alex Arnaud <alex.arnaud@biblibre.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 89f1b91503..5e72d21891 100644 >--- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-user.tt >+++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-user.tt >@@ -501,8 +501,8 @@ > [% FOREACH c IN r.checkouts %] > <tr> > <td> >- <a href="/cgi-bin/koha/opac-detail.pl?biblionumber=[% i.item.biblio.biblionumber | uri %]"> >- [% i.item.biblio.title | html %][% IF ( i.item.enumchron ) %] [% i.item.enumchron | html %][% END %] >+ <a href="/cgi-bin/koha/opac-detail.pl?biblionumber=[% c.item.biblio.biblionumber | uri %]"> >+ [% c.item.biblio.title | html %][% IF ( c.item.enumchron ) %] [% c.item.enumchron | html %][% END %] > </a> > </td> > >-- >2.11.0
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 25914
:
106472
|
106478
| 106516