Lines 1405-1411
sub merge {
Link Here
|
1405 |
# Search authtypes and reporting tags |
1405 |
# Search authtypes and reporting tags |
1406 |
my $authfrom = Koha::Authorities->find($mergefrom); |
1406 |
my $authfrom = Koha::Authorities->find($mergefrom); |
1407 |
my $authto = Koha::Authorities->find($mergeto); |
1407 |
my $authto = Koha::Authorities->find($mergeto); |
1408 |
my $authtypefrom = $authfrom ? Koha::Authority::Types->find($authfrom->authtypecode) : undef; |
1408 |
my $authtypefrom = $MARCfrom ? Koha::Authority::Types->find(GuessAuthTypeCode($MARCfrom)) : undef; |
1409 |
my $authtypeto = $authto ? Koha::Authority::Types->find($authto->authtypecode) : undef; |
1409 |
my $authtypeto = $authto ? Koha::Authority::Types->find($authto->authtypecode) : undef; |
1410 |
my $auth_tag_to_report_from = $authtypefrom ? $authtypefrom->auth_tag_to_report : ''; |
1410 |
my $auth_tag_to_report_from = $authtypefrom ? $authtypefrom->auth_tag_to_report : ''; |
1411 |
my $auth_tag_to_report_to = $authtypeto ? $authtypeto->auth_tag_to_report : ''; |
1411 |
my $auth_tag_to_report_to = $authtypeto ? $authtypeto->auth_tag_to_report : ''; |
1412 |
- |
|
|