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

(-)a/installer/data/mysql/sysprefs.sql (+1 lines)
Lines 417-419 INSERT INTO systempreferences (variable,value,options,explanation,type) VALUES ( Link Here
417
INSERT INTO systempreferences (variable,value,explanation,options,type) VALUES('UNIMARCField100Language', 'fre','UNIMARC field 100 default language',NULL,'short');
417
INSERT INTO systempreferences (variable,value,explanation,options,type) VALUES('UNIMARCField100Language', 'fre','UNIMARC field 100 default language',NULL,'short');
418
INSERT IGNORE INTO systempreferences (variable,value,explanation,options,type) VALUES('Persona',0,'Use Mozilla Persona for login','','YesNo');
418
INSERT IGNORE INTO systempreferences (variable,value,explanation,options,type) VALUES('Persona',0,'Use Mozilla Persona for login','','YesNo');
419
INSERT IGNORE INTO systempreferences (variable,value,explanation,options,type) VALUES('OpacShowHoldNotes',0,'Show hold notes on OPAC','','YesNo');
419
INSERT IGNORE INTO systempreferences (variable,value,explanation,options,type) VALUES('OpacShowHoldNotes',0,'Show hold notes on OPAC','','YesNo');
420
INSERT IGNORE INTO systempreferences (variable,value,explanation,options,type) VALUES('OPACMandatoryHoldNotes','','Mandatory hold notes','','Textarea');
(-)a/installer/data/mysql/updatedatabase.pl (-1 / +9 lines)
Lines 6453-6458 if(CheckVersion($DBversion)) { Link Here
6453
    SetVersion($DBversion);
6453
    SetVersion($DBversion);
6454
}
6454
}
6455
6455
6456
$DBversion = "3.11.00.XXX";
6457
if(CheckVersion($DBversion)) {
6458
    $dbh->do(
6459
"INSERT IGNORE INTO systempreferences (variable,value,explanation,options,type) VALUES('OPACMandatoryHoldNotes','','Mandatory hold notes','','Textarea')"
6460
    );
6461
    print "Upgrade to $DBversion done (Bug 9743: Mandatory opac hold notes under specified conditions)\n";
6462
    SetVersion($DBversion);
6463
}
6464
6456
6465
6457
=head1 FUNCTIONS
6466
=head1 FUNCTIONS
6458
6467
6459
- 

Return to bug 9743