@@ -, +, @@ doesn't work - Apply the patch and go to Reports -> Use saved. - Click the tab for the group which contains your reports. - Choose the subgroup you want to filter on from the subgroup dropdown. when filtered, but this patch does correct the filtering. --- .../en/modules/reports/guided_reports_start.tt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt @@ -116,11 +116,11 @@ $(document).ready(function(){ var sg_id = $(selected).val(); var sg_name = $(selected).text(); if (sg_id.length > 0) { - rtable.fnFilter('^' + sg_name + '$', 4, true, true, true, false); - rtable.fnSetColumnVis(4, false); + rtable.fnFilter('^' + sg_name + '$', 5, true, true, true, false); + rtable.fnSetColumnVis(5, false); } else { - rtable.fnFilter('', 4); - rtable.fnSetColumnVis(4, true); + rtable.fnFilter('', 5); + rtable.fnSetColumnVis(5, true); } }); --