From 0a6b543e54449db4a26af4a96fc392bb78e701d1 Mon Sep 17 00:00:00 2001 From: Johan Larsson Date: Mon, 1 Oct 2018 14:48:54 +0200 Subject: [PATCH] wrong column was selected for filtering the table. This was caused by changing the hmtl-structure of the table https://bugs.koha-community.org/show_bug.cgi?id=21462 --- 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 1f64b17b90..81d3e094dd 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.14.3 (Apple Git-98)