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

(-)a/Koha/ItemType.pm (-2 / +3 lines)
Lines 57-63 sub translated_description { Link Here
57
        entity => 'itemtypes',
57
        entity => 'itemtypes',
58
        lang => $lang
58
        lang => $lang
59
    })->next;
59
    })->next;
60
    return $translated_description || $self->description;
60
    return $translated_description
61
         ? $translated_description->translation
62
         : $self->description;
61
}
63
}
62
64
63
=head3 translated_descriptions
65
=head3 translated_descriptions
64
- 

Return to bug 16114