https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=38628
Jonathan Druart <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #5 from Jonathan Druart <[email protected]> --- I think it never worked. catalogue/itemsearch.pl We deal with "columns": 83 $cgi->param( 'f', @f ); 84 $cgi->param( 'q', @q ); 85 $cgi->param( 'op', @op ); 86 $cgi->param( 'c', @c ); Then: 160 my @c = $param_names{'c[]'} ? $cgi->multi_param('c[]') : $cgi->multi_param('c'); 161 my @fields = $param_names{'f[]'} ? $cgi->multi_param('f[]') : $cgi->multi_param('f'); 162 my @q = $param_names{'q[]'} ? $cgi->multi_param('q[]') : $cgi->multi_param('q'); 163 my @op = $param_names{'op[]'} ? $cgi->multi_param('op[]') : $cgi->multi_param('op'); -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. _______________________________________________ Koha-bugs mailing list [email protected] https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
