Lines 1-5
Link Here
|
1 |
use Modern::Perl; |
1 |
use Modern::Perl; |
2 |
use Encode qw( encode_utf8 ); |
|
|
3 |
|
2 |
|
4 |
return { |
3 |
return { |
5 |
bug_number => 30850, |
4 |
bug_number => 30850, |
Lines 8-17
return {
Link Here
|
8 |
my ($args) = @_; |
7 |
my ($args) = @_; |
9 |
my ($dbh, $out) = @$args{qw(dbh out)}; |
8 |
my ($dbh, $out) = @$args{qw(dbh out)}; |
10 |
|
9 |
|
11 |
say $out encode_utf8 '110$a was added as a default mapping for biblio.author in MARC21.'; |
10 |
say $out |
12 |
say $out encode_utf8 'This will only change the mapping on new installations.'; |
11 |
q|110$a was added as a default mapping for biblio.author in MARC21. This will only change the mapping on new installations. If you wish to change the mappings on your existing installation, go to Administration > Koha to MARC mapping and add 110$a to biblio.author and then run batchRebuilBiblioTables.pl.|; |
13 |
say $out encode_utf8 'If you wish to change the mappings on your existing installation,'; |
|
|
14 |
say $out encode_utf8 'go to Administration > Koha to MARC mapping and add 110$a to biblio.author'; |
15 |
say $out encode_utf8 'and then run batchRebuilBiblioTables.pl'; |
16 |
}, |
12 |
}, |
17 |
} |
13 |
} |
18 |
- |
|
|