Bugzilla – Attachment 135485 Details for
Bug 28723
Holds table not displayed when it contains a biblio without title
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 28723: Fix holds table display when a biblio has no title
Bug-28723-Fix-holds-table-display-when-a-biblio-ha.patch (text/plain), 1.43 KB, created by
Jonathan Druart
on 2022-05-31 09:41:30 UTC
(
hide
)
Description:
Bug 28723: Fix holds table display when a biblio has no title
Filename:
MIME Type:
Creator:
Jonathan Druart
Created:
2022-05-31 09:41:30 UTC
Size:
1.43 KB
patch
obsolete
>From 4ab442921a5d0b8d58d0315d4d6cb779ccc8bd22 Mon Sep 17 00:00:00 2001 >From: Julian Maurice <julian.maurice@biblibre.com> >Date: Tue, 20 Jul 2021 14:45:35 +0200 >Subject: [PATCH] Bug 28723: Fix holds table display when a biblio has no title > >Test plan: >1. Create a biblio without title, then create an item for this biblio. >2. Place a hold on it. >3. Go to the patron detail page and click on the Holds tab >4. Confirm that holds are correctly displayed > >Signed-off-by: David Nind <david@davidnind.com> > >Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >--- > koha-tmpl/intranet-tmpl/prog/js/holds.js | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/js/holds.js b/koha-tmpl/intranet-tmpl/prog/js/holds.js >index 44e110df437..c422cfaf8eb 100644 >--- a/koha-tmpl/intranet-tmpl/prog/js/holds.js >+++ b/koha-tmpl/intranet-tmpl/prog/js/holds.js >@@ -138,7 +138,7 @@ $(document).ready(function() { > title = "<a href='/cgi-bin/koha/reserve/request.pl?biblionumber=" > + oObj.biblionumber > + "'>" >- + oObj.title.escapeHtml(); >+ + (oObj.title ? oObj.title.escapeHtml() : __('No title')); > > $.each(oObj.subtitle, function( index, value ) { > title += " " + value.escapeHtml(); >-- >2.25.1
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 28723
:
122973
|
122975
|
135447
|
135452
|
135484
| 135485 |
135486