View | Details | Raw Unified | Return to bug 30850
Collapse All | Expand All

(-)a/installer/data/mysql/atomicupdate/bug_30850.pl (-1 / +17 lines)
Line 0 Link Here
0
- 
1
use Modern::Perl;
2
use Encode qw( encode_utf8 );
3
4
return {
5
    bug_number => 30850,
6
    description => 'Message about mappings changes for 110$a',
7
    up => sub {
8
        my ($args) = @_;
9
        my ($dbh, $out) = @$args{qw(dbh out)};
10
11
        say $out encode_utf8 '110$a was added as a default mapping for biblio.author in MARC21.';
12
        say $out encode_utf8 'This will only change the mapping on new installations.';
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
    },
17
}

Return to bug 30850