Bug 9755: Refactor record merge functionality
[koha.git] / Koha / Authority.pm
index b07db92..855ce1f 100644 (file)
@@ -38,9 +38,9 @@ use MARC::Record;
 use MARC::File::XML;
 use C4::Charset;
 
-use base qw(Class::Accessor);
+use base qw(Koha::Record);
 
-__PACKAGE__->mk_accessors(qw( authid authtype record marcflavour ));
+__PACKAGE__->mk_accessors(qw( authid authtype marcflavour ));
 
 =head2 new
 
@@ -59,6 +59,7 @@ sub new {
     return $self;
 }
 
+
 =head2 get_from_authid
 
     my $auth = Koha::Authority->get_from_authid($authid);