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

(-)a/installer/data/mysql/atomicupdate/bug_27835.perl (-1 / +1 lines)
Lines 3-9 if( CheckVersion( $DBversion ) ) { Link Here
3
3
4
    $dbh->do(q|
4
    $dbh->do(q|
5
        INSERT IGNORE INTO systempreferences (variable,value,options,explanation,type)
5
        INSERT IGNORE INTO systempreferences (variable,value,options,explanation,type)
6
        VALUES ('ChargeFinesOnClosedDays', '1', NULL, 'Charge fines on days the library is closed.', 'YesNo')
6
        VALUES ('ChargeFinesOnClosedDays', '0', NULL, 'Charge fines on days the library is closed.', 'YesNo')
7
    |);
7
    |);
8
8
9
    NewVersion( $DBversion, 27835, "Add new system preference ChargeFinesOnClosedDays");
9
    NewVersion( $DBversion, 27835, "Add new system preference ChargeFinesOnClosedDays");
(-)a/installer/data/mysql/mandatory/sysprefs.sql (-2 / +1 lines)
Lines 122-128 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
122
('casServerUrl','https://localhost:8443/cas','','URL of the cas server','Free'),
122
('casServerUrl','https://localhost:8443/cas','','URL of the cas server','Free'),
123
('CatalogModuleRelink','0',NULL,'If OFF the linker will never replace the authids that are set in the cataloging module.','YesNo'),
123
('CatalogModuleRelink','0',NULL,'If OFF the linker will never replace the authids that are set in the cataloging module.','YesNo'),
124
('CataloguingLog','1',NULL,'If ON, log edit/create/delete actions on bibliographic data. WARNING: this feature is very resource consuming.','YesNo'),
124
('CataloguingLog','1',NULL,'If ON, log edit/create/delete actions on bibliographic data. WARNING: this feature is very resource consuming.','YesNo'),
125
('ChargeFinesOnClosedDays','1',NULL,'Charge fines on days the library is closed.','YesNo')
125
('ChargeFinesOnClosedDays','0',NULL,'Charge fines on days the library is closed.','YesNo'),
126
('CheckPrevCheckout','hardno','hardyes|softyes|softno|hardno','By default, for every item checked out, should we warn if the patron has borrowed that item in the past?','Choice'),
126
('CheckPrevCheckout','hardno','hardyes|softyes|softno|hardno','By default, for every item checked out, should we warn if the patron has borrowed that item in the past?','Choice'),
127
('CheckPrevCheckoutDelay','0', NULL,'Maximum number of days that will trigger a warning if the patron has borrowed that item in the past when CheckPrevCheckout is enabled.','free'),
127
('CheckPrevCheckoutDelay','0', NULL,'Maximum number of days that will trigger a warning if the patron has borrowed that item in the past when CheckPrevCheckout is enabled.','free'),
128
('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'),
128
('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'),
129
- 

Return to bug 27835