@@ -, +, @@ --- koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt @@ -694,11 +694,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 the library name --