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

(-)a/reports/borrowers_stats.pl (-2 / +2 lines)
Lines 207-214 sub calculate { Link Here
207
    }
207
    }
208
    foreach my $type ( keys %$attr_filters ) {
208
    foreach my $type ( keys %$attr_filters ) {
209
        if ( $attr_filters->{$type} ) {
209
        if ( $attr_filters->{$type} ) {
210
            my $patron_attribute_type = Koha::Patron::Attribute::Types->find($type);
210
            push @loopfilter, {
211
            push @loopfilter, {
211
                crit   => "Attribute $type",
212
                crit   => sprintf( "Attribute %s (%s)", $patron_attribute_type->description, $type ),
212
                filter => $attr_filters->{$type}
213
                filter => $attr_filters->{$type}
213
            };
214
            };
214
        }
215
        }
215
- 

Return to bug 40285