From 37790543e8c62df3e74d569f68a33ac3b021a43b Mon Sep 17 00:00:00 2001 From: Andrew Isherwood Date: Thu, 24 Oct 2019 15:11:22 +0100 Subject: [PATCH] Bug 23838: (follow-up) Rephrase log message As suggested by Owen in comment #10 Thanks Owen, I went for the second option --- .../intranet-tmpl/prog/en/includes/patron-renewal-modal-strings.inc | 3 +-- koha-tmpl/intranet-tmpl/prog/js/patron-renewal-modal.js | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/patron-renewal-modal-strings.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/patron-renewal-modal-strings.inc index f0727183db..dde6014c0d 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/patron-renewal-modal-strings.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/patron-renewal-modal-strings.inc @@ -1,5 +1,4 @@ diff --git a/koha-tmpl/intranet-tmpl/prog/js/patron-renewal-modal.js b/koha-tmpl/intranet-tmpl/prog/js/patron-renewal-modal.js index 4323190817..0080e551a6 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/patron-renewal-modal.js +++ b/koha-tmpl/intranet-tmpl/prog/js/patron-renewal-modal.js @@ -21,6 +21,6 @@ $(document).ready(function(){ }); }); function createLi(renewal) { - return '
  • ' + renewed_on + ' ' + renewal.timestamp + ' ' + by + ' ' + renewal.renewed_by.firstname + ' ' + renewal.renewed_by.surname + '
  • '; + return '
  • ' + renewal.timestamp + ' ' + renewed + ' ' + renewal.renewed_by.firstname + ' ' + renewal.renewed_by.surname + '
  • '; } }); -- 2.11.0