From fe27738c367a4b2b6078dca76358bd057b94cd27 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Tue, 17 Sep 2019 13:36:29 -0400 Subject: [PATCH] Bug 23626: Don't enable by default --- installer/data/mysql/atomicupdate/bug_23626.perl | 2 +- installer/data/mysql/sysprefs.sql | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/installer/data/mysql/atomicupdate/bug_23626.perl b/installer/data/mysql/atomicupdate/bug_23626.perl index 1d43c50302..38b0cd4f81 100644 --- a/installer/data/mysql/atomicupdate/bug_23626.perl +++ b/installer/data/mysql/atomicupdate/bug_23626.perl @@ -1,7 +1,7 @@ $DBversion = 'XXX'; # will be replaced by the RM if( CheckVersion( $DBversion ) ) { $dbh->do(q{ - 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') + 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') }); SetVersion( $DBversion ); diff --git a/installer/data/mysql/sysprefs.sql b/installer/data/mysql/sysprefs.sql index 78f5bef895..cebb9cb86c 100644 --- a/installer/data/mysql/sysprefs.sql +++ b/installer/data/mysql/sysprefs.sql @@ -508,7 +508,7 @@ INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` ('RentalsInNoissuesCharge','1',NULL,'Rental charges block checkouts (added to noissuescharge).','YesNo'), ('ReplyToDefault','',NULL,'Use this email address as the replyto in emails','Free'), ('ReportsLog','0',NULL,'If ON, log information about reports.','YesNo'), -('ReportsMaxRowsInChart','10000',NULL,'If greater than 0, sets the maximum number of rows that will be used when charting results of guided reports','Integer'), +('ReportsMaxRowsInChart','0',NULL,'If greater than 0, sets the maximum number of rows that will be used when charting results of guided reports','Integer'), ('RequestOnOpac','1',NULL,'If ON, globally enables patron holds on OPAC','YesNo'), ('RequireStrongPassword','1','','Require a strong login password for staff and patrons','YesNo'), ('ReservesControlBranch','PatronLibrary','ItemHomeLibrary|PatronLibrary','Branch checked for members reservations rights','Choice'), -- 2.20.1 (Apple Git-117)