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

(-)a/installer/data/mysql/updatedatabase.pl (-2 / +1 lines)
Lines 10641-10647 foreach my $file ( sort readdir $dirh ) { Link Here
10641
$DBversion = "3.21.00.XXX";
10641
$DBversion = "3.21.00.XXX";
10642
if ( CheckVersion($DBversion) ) {
10642
if ( CheckVersion($DBversion) ) {
10643
   $dbh->do("
10643
   $dbh->do("
10644
       INSERT INTO systempreferences (variable,value,options,explanation,type)
10644
       INSERT IGNORE INTO systempreferences (variable,value,options,explanation,type)
10645
       VALUES ('MarcFieldDocURL', NULL, NULL, 'URL used for MARC field documentation. Following substitutions are available: {MARC} = marc flavour, eg. \"MARC21\" or \"UNIMARC\". {FIELD} = field number, eg. \"000\" or \"048\". {LANG} = user language, eg. \"en\" or \"fi-FI\"', 'free');
10645
       VALUES ('MarcFieldDocURL', NULL, NULL, 'URL used for MARC field documentation. Following substitutions are available: {MARC} = marc flavour, eg. \"MARC21\" or \"UNIMARC\". {FIELD} = field number, eg. \"000\" or \"048\". {LANG} = user language, eg. \"en\" or \"fi-FI\"', 'free');
10646
    ");
10646
    ");
10647
   print "Upgrade to $DBversion done (Bug 11674: Configuration for MARC field doc URLs)\n";
10647
   print "Upgrade to $DBversion done (Bug 11674: Configuration for MARC field doc URLs)\n";
10648
- 

Return to bug 11674