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

(-)a/installer/data/mysql/sysprefs.sql (+1 lines)
Lines 85-90 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
85
('CircAutocompl','1',NULL,'If ON, autocompletion is enabled for the Circulation input','YesNo'),
85
('CircAutocompl','1',NULL,'If ON, autocompletion is enabled for the Circulation input','YesNo'),
86
('CircAutoPrintQuickSlip','qslip',NULL,'Choose what should happen when an empty barcode field is submitted in circulation: Display a print quick slip window, Display a print slip window or Clear the screen.','Choice'),
86
('CircAutoPrintQuickSlip','qslip',NULL,'Choose what should happen when an empty barcode field is submitted in circulation: Display a print quick slip window, Display a print slip window or Clear the screen.','Choice'),
87
('CircControl','ItemHomeLibrary','PickupLibrary|PatronLibrary|ItemHomeLibrary','Specify the agency that controls the circulation and fines policy','Choice'),
87
('CircControl','ItemHomeLibrary','PickupLibrary|PatronLibrary|ItemHomeLibrary','Specify the agency that controls the circulation and fines policy','Choice'),
88
('claimsbcccopy','0','','bcc the claimacquisition and clamissues alerts','YesNo'),
88
('COinSinOPACResults','1','','If ON, use COinS in OPAC search results page.  NOTE: this can slow down search response time significantly','YesNo'),
89
('COinSinOPACResults','1','','If ON, use COinS in OPAC search results page.  NOTE: this can slow down search response time significantly','YesNo'),
89
('ConfirmFutureHolds','0','','Number of days for confirming future holds','Integer'),
90
('ConfirmFutureHolds','0','','Number of days for confirming future holds','Integer'),
90
('CurrencyFormat','US','US|FR','Determines the display format of currencies. eg: \'36000\' is displayed as \'360 000,00\'  in \'FR\' or \'360,000.00\'  in \'US\'.','Choice'),
91
('CurrencyFormat','US','US|FR','Determines the display format of currencies. eg: \'36000\' is displayed as \'360 000,00\'  in \'FR\' or \'360,000.00\'  in \'US\'.','Choice'),
(-)a/installer/data/mysql/updatedatabase.pl (-1 / +6 lines)
Lines 8704-8709 if ( CheckVersion($DBversion) ) { Link Here
8704
    SetVersion($DBversion);
8704
    SetVersion($DBversion);
8705
}
8705
}
8706
8706
8707
$DBversion = "XXX";
8708
if ( CheckVersion($DBversion) ) {
8709
    $dbh->do("INSERT INTO systempreferences (variable,value,options,explanation,type) VALUES ('claimsbcccopy','0','','bcc the claimacquisition and clamissues alerts','YesNo');");
8710
    print "Upgrade to $DBversion done (Bug 10076 - Add Bcc syspref for claimacquisition and clamissues)\n";
8711
    SetVersion($DBversion);
8712
}
8707
8713
8708
=head1 FUNCTIONS
8714
=head1 FUNCTIONS
8709
8715
8710
- 

Return to bug 10076