From 028c41e21310307f2d2fa4bbfff5d287442ed6bd Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Sun, 25 Sep 2016 14:50:09 +0200 Subject: [PATCH] Bug 17345: Fix typo in sysprefs.sql This fixes a tiny typo in sysprefs.sql that kept all systempreferences from being installed. To test: - Create a new koha database, run the web installer - Verify that all systempreferences have been loaded select count(*) from systempreferences should be no less than 553 or - Truncate your systempreferences table - Verify that the repaired sysprefs.sql file loads without error Signed-off-by: Josef Moravec Signed-off-by: Jonathan Druart --- installer/data/mysql/sysprefs.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installer/data/mysql/sysprefs.sql b/installer/data/mysql/sysprefs.sql index 169665f..5a90b7c 100644 --- a/installer/data/mysql/sysprefs.sql +++ b/installer/data/mysql/sysprefs.sql @@ -482,7 +482,7 @@ INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` ('SuspendHoldsIntranet','1','Allow holds to be suspended from the intranet.',NULL,'YesNo'), ('SuspendHoldsOpac','1','Allow holds to be suspended from the OPAC.',NULL,'YesNo'), ('SvcMaxReportRows','10',NULL,'Maximum number of rows to return via the report web service.','Integer'), -('SwitchOnSiteCheckouts','0',NULL,'Automatically switch an on-site checkout to a normal checkout','YesNo'); +('SwitchOnSiteCheckouts','0',NULL,'Automatically switch an on-site checkout to a normal checkout','YesNo'), ('SyndeticsAuthorNotes','0','','Display Notes about the Author on OPAC from Syndetics','YesNo'), ('SyndeticsAwards','0','','Display Awards on OPAC from Syndetics','YesNo'), ('SyndeticsClientCode','0','','Client Code for using Syndetics Solutions content','free'), -- 2.8.1