From da76f75339bdc1144060e0b6b12c248ffa703e42 Mon Sep 17 00:00:00 2001 From: Josef Moravec Date: Mon, 7 Nov 2016 09:32:54 +0000 Subject: [PATCH] Bug 17472: Borrower Previously Checked Out: Display title Test plan: 0) apply the patch 1) turn on checking previously checkouts - syspref CheckPrevCheckout 2) checkout an item to borrower 3) check the item in and check it out again, you should see the dialog, with information that the current item was previously checked out to this patron. With this patch, the information includes title and author of the item --- koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt index a937bf1..6ab6985 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt @@ -279,7 +279,7 @@ $(document).ready(function() { [% END %] [% IF PREVISSUE %] -
  • This item has previously been checked out to this patron. Check out anyway?
  • +
  • Patron has previously checked out this title: [% item.title %] [% IF item.author %] by [% item.author %][% END %]. Check out anyway?
  • [% END %] [% IF BIBLIO_ALREADY_ISSUED %] -- 2.1.4