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

(-)a/installer/data/mysql/atomicupdate/bug_23626.perl (-1 / +1 lines)
Lines 1-7 Link Here
1
$DBversion = 'XXX'; # will be replaced by the RM
1
$DBversion = 'XXX'; # will be replaced by the RM
2
if( CheckVersion( $DBversion ) ) {
2
if( CheckVersion( $DBversion ) ) {
3
    $dbh->do(q{
3
    $dbh->do(q{
4
        INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES ('ReportsMaxRowsInChart','10000',NULL,'If greater than 0, sets the maximum number of rows that will be used when charting results of guided reports','Integer')
4
        INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES ('ReportsMaxRowsInChart','',NULL,'If greater than 0, sets the maximum number of rows that will be used when charting results of guided reports','Integer')
5
    });
5
    });
6
6
7
    SetVersion( $DBversion );
7
    SetVersion( $DBversion );
(-)a/installer/data/mysql/sysprefs.sql (-2 / +1 lines)
Lines 508-514 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
508
('RentalsInNoissuesCharge','1',NULL,'Rental charges block checkouts (added to noissuescharge).','YesNo'),
508
('RentalsInNoissuesCharge','1',NULL,'Rental charges block checkouts (added to noissuescharge).','YesNo'),
509
('ReplyToDefault','',NULL,'Use this email address as the replyto in emails','Free'),
509
('ReplyToDefault','',NULL,'Use this email address as the replyto in emails','Free'),
510
('ReportsLog','0',NULL,'If ON, log information about reports.','YesNo'),
510
('ReportsLog','0',NULL,'If ON, log information about reports.','YesNo'),
511
('ReportsMaxRowsInChart','10000',NULL,'If greater than 0, sets the maximum number of rows that will be used when charting results of guided reports','Integer'),
511
('ReportsMaxRowsInChart','0',NULL,'If greater than 0, sets the maximum number of rows that will be used when charting results of guided reports','Integer'),
512
('RequestOnOpac','1',NULL,'If ON, globally enables patron holds on OPAC','YesNo'),
512
('RequestOnOpac','1',NULL,'If ON, globally enables patron holds on OPAC','YesNo'),
513
('RequireStrongPassword','1','','Require a strong login password for staff and patrons','YesNo'),
513
('RequireStrongPassword','1','','Require a strong login password for staff and patrons','YesNo'),
514
('ReservesControlBranch','PatronLibrary','ItemHomeLibrary|PatronLibrary','Branch checked for members reservations rights','Choice'),
514
('ReservesControlBranch','PatronLibrary','ItemHomeLibrary|PatronLibrary','Branch checked for members reservations rights','Choice'),
515
- 

Return to bug 23626