@@ -, +, @@ --- Koha/ItemType.pm | 2 +- Koha/ItemTypes.pm | 2 +- Koha/Libraries.pm | 2 +- Koha/Library.pm | 2 +- Koha/LibraryCategories.pm | 2 +- Koha/LibraryCategory.pm | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) --- a/Koha/ItemType.pm +++ a/Koha/ItemType.pm @@ -83,7 +83,7 @@ sub translated_descriptions { =cut -sub type { +sub _type { return 'Itemtype'; } --- a/Koha/ItemTypes.pm +++ a/Koha/ItemTypes.pm @@ -39,7 +39,7 @@ Koha::ItemTypes - Koha ItemType Object set class =cut -sub type { +sub _type { return 'Itemtype'; } --- a/Koha/Libraries.pm +++ a/Koha/Libraries.pm @@ -41,7 +41,7 @@ Koha::Libraries - Koha Library Object set class =cut -sub type { +sub _type { return 'Branch'; } --- a/Koha/Library.pm +++ a/Koha/Library.pm @@ -58,7 +58,7 @@ sub add_to_categories { =cut -sub type { +sub _type { return 'Branch'; } --- a/Koha/LibraryCategories.pm +++ a/Koha/LibraryCategories.pm @@ -41,7 +41,7 @@ Koha::LibraryCategories - Koha Library Category Object set class =cut -sub type { +sub _type { return 'Branchcategory'; } --- a/Koha/LibraryCategory.pm +++ a/Koha/LibraryCategory.pm @@ -51,7 +51,7 @@ sub branchcodes{ =cut -sub type { +sub _type { return 'Branchcategory'; } --