Bugzilla – Attachment 149524 Details for
Bug 33504
ILS-DI does not record renewer_id for renewals creating issue with renewal history view
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 33504: Update patron_to_html to deal with null
Bug-33504-Update-patrontohtml-to-deal-with-null.patch (text/plain), 1.22 KB, created by
Martin Renvoize (ashimema)
on 2023-04-12 10:51:55 UTC
(
hide
)
Description:
Bug 33504: Update patron_to_html to deal with null
Filename:
MIME Type:
Creator:
Martin Renvoize (ashimema)
Created:
2023-04-12 10:51:55 UTC
Size:
1.22 KB
patch
obsolete
>From 508927139aeba90356255915a09a9053dd165593 Mon Sep 17 00:00:00 2001 >From: Martin Renvoize <martin.renvoize@ptfs-europe.com> >Date: Wed, 12 Apr 2023 11:49:51 +0100 >Subject: [PATCH] Bug 33504: Update patron_to_html to deal with null > >In the patron_to_html function we were dealing explicitly with the case >where patron may be passed undefined, but forgetting that it may be >returned as 'null' from the api too. Changing from `( patron === >undefined )` to `( patron == null )` is the recommended approach for >detecting 'undefined or null' in javascript. >--- > koha-tmpl/intranet-tmpl/prog/en/includes/js-patron-format.inc | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/js-patron-format.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/js-patron-format.inc >index 5e125dbc29..3f8cb940ee 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/includes/js-patron-format.inc >+++ b/koha-tmpl/intranet-tmpl/prog/en/includes/js-patron-format.inc >@@ -9,7 +9,7 @@ > */ > window.$patron_to_html = function( patron, config ) { > >- if ( patron === undefined ) { >+ if ( patron == null ) { > return ''; // empty string for no patron > } > >-- >2.40.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 33504
:
149524
|
150184
|
150451