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

(-)a/installer/data/mysql/atomicupdate/bug_13912.perl (-1 / +11 lines)
Line 0 Link Here
0
- 
1
$DBversion = 'XXX';
2
if( CheckVersion( $DBversion ) ) {
3
    $dbh->do(q{
4
        INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` )
5
        VALUES (
6
            'DefaultCountryField008','','',
7
            'Fill in the default country code for field 008 Range 15-17 - Place of publication, production, or execution. See <a href=\"http://www.loc.gov/marc/countries/countries_code.html\">MARC Code List for Countries</a>','Free')
8
    });
9
    SetVersion($DBversion);
10
    print "Upgrade to $DBversion done (Bug 13912: System preference for default place of publication (country code) for field 008, range 15-17)\n";
11
}

Return to bug 13912