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

(-)a/Koha/ItemType.pm (-1 / +1 lines)
Lines 83-89 sub translated_descriptions { Link Here
83
83
84
=cut
84
=cut
85
85
86
sub type {
86
sub _type {
87
    return 'Itemtype';
87
    return 'Itemtype';
88
}
88
}
89
89
(-)a/Koha/ItemTypes.pm (-1 / +1 lines)
Lines 39-45 Koha::ItemTypes - Koha ItemType Object set class Link Here
39
39
40
=cut
40
=cut
41
41
42
sub type {
42
sub _type {
43
    return 'Itemtype';
43
    return 'Itemtype';
44
}
44
}
45
45
(-)a/Koha/Libraries.pm (-1 / +1 lines)
Lines 41-47 Koha::Libraries - Koha Library Object set class Link Here
41
41
42
=cut
42
=cut
43
43
44
sub type {
44
sub _type {
45
    return 'Branch';
45
    return 'Branch';
46
}
46
}
47
47
(-)a/Koha/Library.pm (-1 / +1 lines)
Lines 58-64 sub add_to_categories { Link Here
58
58
59
=cut
59
=cut
60
60
61
sub type {
61
sub _type {
62
    return 'Branch';
62
    return 'Branch';
63
}
63
}
64
64
(-)a/Koha/LibraryCategories.pm (-1 / +1 lines)
Lines 41-47 Koha::LibraryCategories - Koha Library Category Object set class Link Here
41
41
42
=cut
42
=cut
43
43
44
sub type {
44
sub _type {
45
    return 'Branchcategory';
45
    return 'Branchcategory';
46
}
46
}
47
47
(-)a/Koha/LibraryCategory.pm (-2 / +1 lines)
Lines 51-57 sub branchcodes{ Link Here
51
51
52
=cut
52
=cut
53
53
54
sub type {
54
sub _type {
55
    return 'Branchcategory';
55
    return 'Branchcategory';
56
}
56
}
57
57
58
- 

Return to bug 15446