Bugzilla – Attachment 135447 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.30 KB, created by
Julian Maurice
on 2022-05-30 09:00:54 UTC
(
hide
)
Description:
Bug 28723: Fix holds table display when a biblio has no title
Filename:
MIME Type:
Creator:
Julian Maurice
Created:
2022-05-30 09:00:54 UTC
Size:
1.30 KB
patch
obsolete
>From 9482e1c8dd1094f4e45dd953058d5792db560c07 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 >--- > 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 44e110df43..c422cfaf8e 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.30.2
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