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

(-)a/Koha/Patron/Attribute.pm (-2 / +2 lines)
Lines 106-112 displayed instead of the code. Link Here
106
sub description {
106
sub description {
107
    my ( $self) = @_;
107
    my ( $self) = @_;
108
    if ( $self->type->authorised_value_category ) {
108
    if ( $self->type->authorised_value_category ) {
109
        return $self->authorised_value->lib;
109
        my $av = $self->authorised_value;
110
        return $av ? $av->lib : "";
110
    }
111
    }
111
    return $self->attribute;
112
    return $self->attribute;
112
}
113
}
113
- 

Return to bug 20443