From 180fe9cf6ea3ae06bfde90d1efd51a2970a420ce Mon Sep 17 00:00:00 2001
From: genevieve <genevieve.plantin@inlibro.com>
Date: Fri, 4 Sep 2015 09:15:26 -0400
Subject: [PATCH] CAM 2146 - Bug 13781 - Fix relatives's checkouts missing
 heading columns
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

There was two missing heading columns (location and fine) and one hidden heading missing column (this hidden column is needing for sorting the table) it was taking the due_date column for the hidden column, so I added them

Both patches tested together. Works as expected.
Signed-off-by: Marc Véron <veron@veron.ch>
---
 koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt |    3 +++
 1 file changed, 3 insertions(+)

diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt
index e3ca832..f781c98 100644
--- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt
+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt
@@ -444,13 +444,16 @@ function validate1(date) {
         <table id="relatives-issues-table" style="width: 100% !Important;">
             <thead>
                 <tr>
+		    <th scope="col">Due date hidden not formatted</th>
                     <th scope="col">Due date</th>
                     <th scope="col">Title</th>
                     <th scope="col">Item type</th>
+		    <th scope="col">Location</th>
                     <th scope="col">Checked out on</th>
                     <th scope="col">Checked out from</th>
                     <th scope="col">Call no</th>
                     <th scope="col">Charge</th>
+	            <th scope="col">Fine</th>
                     <th scope="col">Price</th>
                     <th scope="col">Patron</th>
                 </tr>
-- 
1.7.10.4