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

(-)a/installer/data/mysql/atomicupdate/bug_40435.pl (-1 / +1 lines)
Lines 10-16 return { Link Here
10
10
11
        $dbh->do(
11
        $dbh->do(
12
            q{INSERT IGNORE INTO systempreferences (variable,value,options,explanation,type)
12
            q{INSERT IGNORE INTO systempreferences (variable,value,options,explanation,type)
13
            VALUES ('FutureHoldsBlockRenewals', 0, NULL, 'Allow future holds to block renewals', 'Integer' )}
13
            VALUES ('FutureHoldsBlockRenewals', 0, NULL, 'Allow future holds to block renewals', 'YesNo' )}
14
        );
14
        );
15
15
16
        say $out "Added new system preference 'FutureHoldsBlockRenewals'";
16
        say $out "Added new system preference 'FutureHoldsBlockRenewals'";
(-)a/installer/data/mysql/mandatory/sysprefs.sql (-2 / +1 lines)
Lines 297-303 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
297
('ForceLibrarySelection','0',NULL,'Force staff to select a library when logging into the staff interface.','YesNo'),
297
('ForceLibrarySelection','0',NULL,'Force staff to select a library when logging into the staff interface.','YesNo'),
298
('ForcePasswordResetWhenSetByStaff','0',NULL,'Force a staff created patron account to reset its password after its first OPAC login.','YesNo'),
298
('ForcePasswordResetWhenSetByStaff','0',NULL,'Force a staff created patron account to reset its password after its first OPAC login.','YesNo'),
299
('FRBRizeEditions','0','','If ON, Koha will query one or more ISBN web services for associated ISBNs and display an Editions tab on the details pages','YesNo'),
299
('FRBRizeEditions','0','','If ON, Koha will query one or more ISBN web services for associated ISBNs and display an Editions tab on the details pages','YesNo'),
300
('FutureHoldsBlockRenewals', 0, NULL, 'Allow future holds to block renewals', 'Integer' ),
300
('FutureHoldsBlockRenewals', 0, NULL, 'Allow future holds to block renewals', 'YesNo' ),
301
('GenerateAuthorityField667', 'Machine generated authority record', NULL, 'When BiblioAddsAuthorities and AutoCreateAuthorities are enabled, use this as a default value for the 667$a field of MARC21 records', 'free'),
301
('GenerateAuthorityField667', 'Machine generated authority record', NULL, 'When BiblioAddsAuthorities and AutoCreateAuthorities are enabled, use this as a default value for the 667$a field of MARC21 records', 'free'),
302
('GenerateAuthorityField670', 'Work cat.', NULL, 'When BiblioAddsAuthorities and AutoCreateAuthorities are enabled, use this as a default value for the 670$a field of MARC21 records', 'free'),
302
('GenerateAuthorityField670', 'Work cat.', NULL, 'When BiblioAddsAuthorities and AutoCreateAuthorities are enabled, use this as a default value for the 670$a field of MARC21 records', 'free'),
303
('GoogleJackets','0',NULL,'if ON, displays jacket covers from Google Books API','YesNo'),
303
('GoogleJackets','0',NULL,'if ON, displays jacket covers from Google Books API','YesNo'),
304
- 

Return to bug 40435