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

(-)a/tools/export.pl (-2 / +5 lines)
Lines 210-216 if ($op eq "export") { Link Here
210
            }
210
            }
211
        }
211
        }
212
        if ( $output_format eq "xml" ) {
212
        if ( $output_format eq "xml" ) {
213
            print $record->as_xml_record($marcflavour);
213
            if ($marcflavour eq 'UNIMARC' && $record_type eq 'auths') {
214
                print $record->as_xml_record('UNIMARCAUTH');
215
            } else {
216
                print $record->as_xml_record($marcflavour);
217
            }
214
        }
218
        }
215
        else {
219
        else {
216
            print $record->as_usmarc();
220
            print $record->as_usmarc();
217
- 

Return to bug 8202