From e813fd99e8da40f4fa58815c8108c1158aee57b8 Mon Sep 17 00:00:00 2001 From: Martin Renvoize <martin.renvoize@ptfs-europe.com> Date: Thu, 6 Aug 2020 11:34:35 +0100 Subject: [PATCH] Bug 19036: (QA follow-up) Fix 'out-by-one' error on table This patch fixes the total row where the column count was out by one. Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> --- koha-tmpl/intranet-tmpl/prog/en/modules/members/boraccount.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/boraccount.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/boraccount.tt index ce41b255a1..41fa04071a 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/boraccount.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/boraccount.tt @@ -107,7 +107,7 @@ [% END %] <tfoot> <tr> - <td colspan="10">Total due</td> + <td colspan="11">Total due</td> [% IF ( totalcredit ) %] <td class="credit" style="text-align: right;">[% total | $Price %]</td> [% ELSE %] -- 2.11.0