Bug 9021: Fix conflict with bug 15446 (type vs _type)
authorJonathan Druart <jonathan.druart@bugs.koha-community.org>
Mon, 15 Feb 2016 16:26:18 +0000 (16:26 +0000)
committerKyle M Hall <kyle@bywatersolutions.com>
Sun, 14 Feb 2016 12:40:08 +0000 (12:40 +0000)
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
Koha/SMS/Provider.pm
Koha/SMS/Providers.pm

index cc047dd..a9994d9 100644 (file)
@@ -50,11 +50,11 @@ sub patrons_using {
     return Koha::Borrowers->search( { sms_provider_id => $self->id } )->count();
 }
 
-=head3 type
+=head3 _type
 
 =cut
 
-sub type {
+sub _type {
     return 'SmsProvider';
 }
 
index 0a89878..6634d59 100644 (file)
@@ -35,11 +35,11 @@ Koha::SMS::Providers - Koha SMS Provider object set class
 
 =cut
 
-=head3 type
+=head3 _type
 
 =cut
 
-sub type {
+sub _type {
     return 'SmsProvider';
 }