Bugzilla – Attachment 135486 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: Replace "No title" by an empty string
Bug-28723-Replace-No-title-by-an-empty-string.patch (text/plain), 1.24 KB, created by
Jonathan Druart
on 2022-05-31 09:41:34 UTC
(
hide
)
Description:
Bug 28723: Replace "No title" by an empty string
Filename:
MIME Type:
Creator:
Jonathan Druart
Created:
2022-05-31 09:41:34 UTC
Size:
1.24 KB
patch
obsolete
>From 955df68b00991ce5a947add8182e905e2b1d551a Mon Sep 17 00:00:00 2001 >From: Julian Maurice <julian.maurice@biblibre.com> >Date: Tue, 31 May 2022 11:36:37 +0200 >Subject: [PATCH] Bug 28723: Replace "No title" by an empty string > >This is to be consistent with what is done in checkouts.js > >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 c422cfaf8eb..964528a33d5 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 ? oObj.title.escapeHtml() : __('No title')); >+ + (oObj.title ? oObj.title.escapeHtml() : ''); > > $.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