Browse Source

Bug 8202 follow-up UNIMARC authority support

Signed-off-by: Jared Camins-Esakov <jcamins@cpbibliography.com>
3.10.x
Paul Poulain 12 years ago
parent
commit
74f6e97396
  1. 6
      tools/export.pl

6
tools/export.pl

@ -210,7 +210,11 @@ if ($op eq "export") {
}
}
if ( $output_format eq "xml" ) {
print $record->as_xml_record($marcflavour);
if ($marcflavour eq 'UNIMARC' && $record_type eq 'auths') {
print $record->as_xml_record('UNIMARCAUTH');
} else {
print $record->as_xml_record($marcflavour);
}
}
else {
print $record->as_usmarc();

Loading…
Cancel
Save