@@ -, +, @@ --- installer/data/mysql/atomicupdate/bug_30850.pl | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) --- a/installer/data/mysql/atomicupdate/bug_30850.pl +++ a/installer/data/mysql/atomicupdate/bug_30850.pl @@ -1,5 +1,4 @@ use Modern::Perl; -use Encode qw( encode_utf8 ); return { bug_number => 30850, @@ -8,10 +7,7 @@ return { my ($args) = @_; my ($dbh, $out) = @$args{qw(dbh out)}; - say $out encode_utf8 '110$a was added as a default mapping for biblio.author in MARC21.'; - say $out encode_utf8 'This will only change the mapping on new installations.'; - say $out encode_utf8 'If you wish to change the mappings on your existing installation,'; - say $out encode_utf8 'go to Administration > Koha to MARC mapping and add 110$a to biblio.author'; - say $out encode_utf8 'and then run batchRebuilBiblioTables.pl'; + say $out +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.|; }, } --