@@ -, +, @@ --- installer/data/mysql/atomicupdate/bug_13912.perl | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 installer/data/mysql/atomicupdate/bug_13912.perl --- a/installer/data/mysql/atomicupdate/bug_13912.perl +++ a/installer/data/mysql/atomicupdate/bug_13912.perl @@ -0,0 +1,11 @@ +$DBversion = 'XXX'; +if( CheckVersion( $DBversion ) ) { + $dbh->do(q{ + INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) + VALUES ( + 'DefaultCountryField008','','', + 'Fill in the default country code for field 008 Range 15-17 - Place of publication, production, or execution. See MARC Code List for Countries','Free') + }); + SetVersion($DBversion); + print "Upgrade to $DBversion done (Bug 13912: System preference for default place of publication (country code) for field 008, range 15-17)\n"; +} --