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

(-)a/cataloguing/value_builder/marc21_field_008.pl (-1 / +2 lines)
Lines 36-42 my $builder = sub { Link Here
36
    my $lang = C4::Context->preference('DefaultLanguageField008' );
36
    my $lang = C4::Context->preference('DefaultLanguageField008' );
37
    $lang = "eng" unless $lang;
37
    $lang = "eng" unless $lang;
38
    $lang = pack("A3", $lang);
38
    $lang = pack("A3", $lang);
39
    my $country = C4::Context->preference('DefaultCountryField008') // "xxu";
39
    my $country = C4::Context->preference('DefaultCountryField008');
40
    $country = "|||" unless $country;
40
    $country = pack("A3", $country);
41
    $country = pack("A3", $country);
41
42
42
    my $function_name = $params->{id};
43
    my $function_name = $params->{id};
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/cataloguing.pref (-2 / +1 lines)
Lines 63-69 Cataloging: Link Here
63
        -
63
        -
64
            - "Fill in the default country code for field 008 Range 15-17 of MARC21 - Place of publication, production, or execution. (See <a href='http://www.loc.gov/marc/countries/countries_code.html'>MARC Code List for Countries</a>):"
64
            - "Fill in the default country code for field 008 Range 15-17 of MARC21 - Place of publication, production, or execution. (See <a href='http://www.loc.gov/marc/countries/countries_code.html'>MARC Code List for Countries</a>):"
65
            - pref: DefaultCountryField008
65
            - pref: DefaultCountryField008
66
            - " Empty defaults to xxu for United States."
66
            - " Empty defaults to ||| for No attempt to code."
67
        -
67
        -
68
            - Interpret and store MARC records in the
68
            - Interpret and store MARC records in the
69
            - pref: marcflavour
69
            - pref: marcflavour
70
- 

Return to bug 27738