https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28726 Jonathan Druart <jonathan.druart+koha@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jonathan.druart+koha@gmail. | |com --- Comment #17 from Jonathan Druart <jonathan.druart+koha@gmail.com> --- + @sort1 = sort {$a cmp $b} uniq( Koha::Patrons->search($sort_filter)->get_column('sort1') ); This is terrible if you have lot of patrons. You should at least do the unique (distinct) at the DBMS level. What about the following suggestion: you could display sort1 and sort2 authorised values in the dropdown list, or simply display a search input. You could also add it to the table's headers (filter at the top of the column). -- You are receiving this mail because: You are watching all bug changes.