From 61b4625e3fe2b5f2b5bc52273fdb56b41a97db6d Mon Sep 17 00:00:00 2001 From: Magnus Enger Date: Tue, 16 Oct 2018 21:25:43 +0200 Subject: [PATCH] Bug 21585 - Ignore missing firstname in ILL requests table To test: - Make sure you have a patron with just a surname and no firstname - Create an ILL request so that the name of this patron shows up in the Patron column of the ILL requests table - Before the patch, the name will display as "null Surname" - Apply the patch - Reload the ILL requests page - The name should now display as just "Surname" - Sign ye merrily off Signed-off-by: Andrew Isherwood --- koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt index bc6f40a936..d93a13622e 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt @@ -110,11 +110,14 @@ // Our 'render' function for borrowerlink var createPatronLink = function(data, type, row) { - return '' + - row.patron_firstname + ' ' + row.patron_surname + - ''; + 'borrowernumber='+row.borrowernumber+'">'; + if ( row.patron_firstname ) { + patronLink = patronLink + row.patron_firstname + ' '; + } + patronLink = patronLink + row.patron_surname + ''; + return patronLink }; // Our 'render' function for biblio_id -- 2.11.0