https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15407

--- Comment #61 from Marcel de Rooy <[email protected]> ---
-   my %cathash = ($line eq 'categorycode' or $column eq 'categorycode') ?
&catcodes_hash : ();
-   push @loopfilter, {debug=>1, crit=>"\%cathash", filter=>join(", ", map
{$cathash{$_}} sort keys %cathash)};
+    my $patron_categories = Koha::Patron::Categories->search({}, {order_by =>
['categorycode']});
+    push @loopfilter, {debug=>1, crit=>"\%cathash", filter=>join(", ", map {
$_->categorycode . ' (' . ( $_->description || 'NO_DESCRIPTION' ) . ')'}
$patron_categories->as_list )};

You removed cathash, but left it in the push

-- 
You are receiving this mail because:
You are watching all bug changes.
_______________________________________________
Koha-bugs mailing list
[email protected]
http://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/

Reply via email to