From b44e719619950d4a21be5db923f52c297d3bd598 Mon Sep 17 00:00:00 2001
From: Owen Leonard <oleonard@myacpl.org>
Date: Thu, 30 Aug 2018 16:43:09 +0000
Subject: [PATCH] Bug 21293: Display of housebound delivery information broken
 by Bug 13618

This patch corrects the patron housebound details template. A stray
"html" filter broke display of delivery information.

To test, apply the patch and enable the HouseboundModule system
preference.

 - Open a patron record and select the "Housebound" tab in the left-hand
   navigation menu.
 - Click "Add a new deliver" and save some delivery details.
 - Upon saving you should be directed back to the housebound details
   page. All the details of the delivery you saved should appear
   correctly.
---
 koha-tmpl/intranet-tmpl/prog/en/modules/members/housebound.tt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/housebound.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/housebound.tt
index 44e2098..8bf892f 100644
--- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/housebound.tt
+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/housebound.tt
@@ -379,7 +379,7 @@
               </div>
               <div>
                 <h3>Deliveries</h3>
-                [% housebound_visits = housebound_profile.housebound_visits | html %]
+                [% housebound_visits = housebound_profile.housebound_visits %]
                 [% IF  housebound_visits.size > 0 %]
                 <table border="0" width="100%" cellpadding="3" cellspacing="0">
                   <tr>
-- 
2.1.4