http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10855 --- Comment #78 from Jacek Ablewicz <abl@biblos.pk.edu.pl> --- Something seems to be not quite right with serials/serials-search.pl. When I'm searching subscriptions using regular fields - leaving additional fields inputs empty / set to 'All' for authorized ones, I'm allways getting 0 search results. This error seems to be related to patch 22869 (added define () in line 79). After changing it this way: 79c79,80 < if ( defined ( my $filter_value = $query->param('additional_field_' . $field->{id} . '_filter') ) ) { ---
my $filter_value = $query->param('additional_field_' . $field->{id} . '_filter'); if ( defined( $filter_value ) && $filter_value ne '' ) {
searching works again like it should. I'm not sure if that may be a proper fix, but it corrected this particular problem. -- You are receiving this mail because: You are watching all bug changes.