shift off the class param
authorerickson <erickson@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Fri, 5 Jun 2009 18:07:05 +0000 (18:07 +0000)
committererickson <erickson@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Fri, 5 Jun 2009 18:07:05 +0000 (18:07 +0000)
git-svn-id: svn://svn.open-ils.org/ILS/trunk@13330 dcc99617-32d9-48b4-a31d-7c20da2025e4

Open-ILS/src/perlmods/OpenILS/Application/Cat/AuthCommon.pm

index cf310bc..a8ef1f0 100644 (file)
@@ -26,7 +26,7 @@ sub marc_xml_to_doc {
 
 
 sub import_authority_record {
-    my($e, $marc_xml, $source) = @_;
+    my($class, $e, $marc_xml, $source) = @_;
     
     my $marc_doc = marc_xml_to_doc($marc_xml);
     my $rec = Fieldmapper::authority::record_entry->new;
@@ -47,7 +47,7 @@ sub import_authority_record {
 
 
 sub overlay_authority_record {
-    my($e, $rec_id, $marc_xml, $source) = @_;
+    my($class, $e, $rec_id, $marc_xml, $source) = @_;
     
     my $marc_doc = marc_xml_to_doc($marc_xml);
     my $rec = $e->retrieve_authority_record_entry($rec_id) or return $e->die_event;