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

(-)a/C4/Record.pm (-4 / +7 lines)
Lines 931-939 sub marc2cites { Link Here
931
    if ( $marcflavour eq "UNIMARC" ) {
931
    if ( $marcflavour eq "UNIMARC" ) {
932
        %publication = (
932
        %publication = (
933
            title     => $record->subfield( "200", "a" ) || "",
933
            title     => $record->subfield( "200", "a" ) || "",
934
            place     => $record->subfield( "210", "a" ) || "",
934
            place     => $record->subfield( "214", "a" ) || $record->subfield( "210", "a" ) || "",
935
            publisher => $record->subfield( "210", "c" ) || "",
935
            publisher => $record->subfield( "214", "c" ) || $record->subfield( "210", "c" ) || "",
936
            date      => $record->subfield( "210", "d" ) || $record->subfield( "210", "h" ) || ""
936
            date      => $record->subfield( "214", "d" )
937
                || $record->subfield( "214", "h" )
938
                || $record->subfield( "210", "d" )
939
                || $record->subfield( "210", "h" )
940
                || ""
937
        );
941
        );
938
    } else {
942
    } else {
939
        %publication = (
943
        %publication = (
940
- 

Return to bug 39902