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

(-)a/admin/authorised_values.pl (-2 / +1 lines)
Lines 208-214 $template->param( Link Here
208
208
209
if ( $op eq 'list' ) {
209
if ( $op eq 'list' ) {
210
    # build categories list
210
    # build categories list
211
    my @categories = Koha::AuthorisedValueCategories->search({ category_name => { -not_in => ['branches', 'itemtypes', 'cn_source']}}, { order_by => ['category_name'] } );
211
    my @categories = Koha::AuthorisedValueCategories->search({ category_name => { -not_in => ['', 'branches', 'itemtypes', 'cn_source']}}, { order_by => ['category_name'] } );
212
    my @category_list;
212
    my @category_list;
213
    for my $category ( @categories ) {
213
    for my $category ( @categories ) {
214
        push( @category_list, $category->category_name );
214
        push( @category_list, $category->category_name );
215
- 

Return to bug 17216