From 521b036f1abb1538b62d9d9103024ac9040626bd Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Thu, 3 Mar 2016 08:41:38 +0000 Subject: [PATCH] Bug 15084: Fix conflict with bug 15446 (type vs _type) --- Koha/Acquisition/Currencies.pm | 4 ++-- Koha/Acquisition/Currency.pm | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Koha/Acquisition/Currencies.pm b/Koha/Acquisition/Currencies.pm index cdbbfed..f733980 100644 --- a/Koha/Acquisition/Currencies.pm +++ b/Koha/Acquisition/Currencies.pm @@ -44,11 +44,11 @@ sub get_active { return $self->SUPER::search( { active => 1 } )->next; } -=head3 type +=head3 _type =cut -sub type { +sub _type { return 'Currency'; } diff --git a/Koha/Acquisition/Currency.pm b/Koha/Acquisition/Currency.pm index da0bcd2..63c8693 100644 --- a/Koha/Acquisition/Currency.pm +++ b/Koha/Acquisition/Currency.pm @@ -53,11 +53,11 @@ sub store { return $result; } -=head3 type +=head3 _type =cut -sub type { +sub _type { return 'Currency'; } -- 2.7.0