@@ -, +, @@ _type --- Koha/Authorities.pm | 2 +- Koha/Authority.pm | 2 +- Koha/Authority/Type.pm | 2 +- Koha/Authority/Types.pm | 2 +- Koha/BiblioFramework.pm | 2 +- Koha/BiblioFrameworks.pm | 2 +- Koha/IssuingRule.pm | 2 +- Koha/IssuingRules.pm | 2 +- Koha/Subscription.pm | 2 +- Koha/Subscription/Histories.pm | 2 +- Koha/Subscription/History.pm | 2 +- Koha/Subscriptions.pm | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) --- a/Koha/Authorities.pm +++ a/Koha/Authorities.pm @@ -41,7 +41,7 @@ Koha::Authorities - Koha Authority object set class =cut -sub type { +sub _type { return 'AuthHeader'; } --- a/Koha/Authority.pm +++ a/Koha/Authority.pm @@ -39,7 +39,7 @@ Koha::Authority - Koha Authority Object class =cut -sub type { +sub _type { return 'AuthHeader'; } --- a/Koha/Authority/Type.pm +++ a/Koha/Authority/Type.pm @@ -42,7 +42,7 @@ sub auth_tag_structures { =cut -sub type { +sub _type { return 'AuthType'; } --- a/Koha/Authority/Types.pm +++ a/Koha/Authority/Types.pm @@ -39,7 +39,7 @@ Koha::Authority::Types - Koha Authority Type Object set class =cut -sub type { +sub _type { return 'AuthType'; } --- a/Koha/BiblioFramework.pm +++ a/Koha/BiblioFramework.pm @@ -37,7 +37,7 @@ Koha::BiblioFramework - Koha BiblioFramework Object class =cut -sub type { +sub _type { return 'BiblioFramework'; } --- a/Koha/BiblioFrameworks.pm +++ a/Koha/BiblioFrameworks.pm @@ -39,7 +39,7 @@ Koha::BiblioFrameworks - Koha BiblioFramework Object set class =cut -sub type { +sub _type { return 'BiblioFramework'; } --- a/Koha/IssuingRule.pm +++ a/Koha/IssuingRule.pm @@ -35,7 +35,7 @@ Koha::Hold - Koha Hold object class =cut -sub type { +sub _type { return 'Issuingrule'; } --- a/Koha/IssuingRules.pm +++ a/Koha/IssuingRules.pm @@ -35,7 +35,7 @@ Koha::IssuingRules - Koha IssuingRules object set class =cut -sub type { +sub _type { return 'Issuingrule'; } --- a/Koha/Subscription.pm +++ a/Koha/Subscription.pm @@ -39,7 +39,7 @@ Koha::Subscription - Koha Subscription Object class =cut -sub type { +sub _type { return 'Subscription'; } --- a/Koha/Subscription/Histories.pm +++ a/Koha/Subscription/Histories.pm @@ -41,7 +41,7 @@ Koha::Subscription::Histories - Koha Subscription Histories Object class =cut -sub type { +sub _type { return 'Subscriptionhistory'; } --- a/Koha/Subscription/History.pm +++ a/Koha/Subscription/History.pm @@ -39,7 +39,7 @@ Koha::Subscription::History - Koha Subscription History Object class =cut -sub type { +sub _type { return 'Subscriptionhistory'; } --- a/Koha/Subscriptions.pm +++ a/Koha/Subscriptions.pm @@ -41,7 +41,7 @@ Koha::Subscription - Koha Subscription Object class =cut -sub type { +sub _type { return 'Subscription'; } --