View | Details | Raw Unified | Return to bug 40470
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt (-2 / +1 lines)
Lines 2493-2499 Link Here
2493
                g_id = '';
2493
                g_id = '';
2494
            }
2494
            }
2495
2495
2496
            if (g_id && g_id.length > 0) {
2496
            if (g_id !== null && g_id !== undefined && g_id.toString().length > 0) {
2497
                col4.search(g_id, {exact:true}).visible(false);
2497
                col4.search(g_id, {exact:true}).visible(false);
2498
                if( group_subgroups[g_id] && group_subgroups[g_id].length > 0 ){
2498
                if( group_subgroups[g_id] && group_subgroups[g_id].length > 0 ){
2499
                    for(var i in group_subgroups[g_id]) {
2499
                    for(var i in group_subgroups[g_id]) {
2500
- 

Return to bug 40470