From fca98de0e8663c4e7049e55ac2cc2600c9b659a5 Mon Sep 17 00:00:00 2001 From: Johan Larsson Date: Mon, 1 Oct 2018 14:48:54 +0200 Subject: [PATCH] Bug 21462: (bug 15136 follow-up) Shift column numbering Wrong column was selected for filtering the table. This was caused by changing the hmtl-structure of the table Signed-off-by: Jonathan Druart Signed-off-by: Nick Clemens --- 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 8e2484daff..a27937ee99 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/boraccount.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/boraccount.tt @@ -143,7 +143,7 @@ var filteredValue = '^((?!0.00).*)$'; //Filter not matching 0.00 http://stackoverflow.com/a/406408 $(this).html(' '+txtInactivefilter); } - table_account_fines.fnFilter(filteredValue, 4, true, false); + table_account_fines.fnFilter(filteredValue, 5, true, false); $(this).toggleClass('filtered'); }); -- 2.39.5