From b7d041dbecf8f2879dc2bfea6c648fb6eecf75d5 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 --- 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 5dc6bb9..7ba874f 100644 --- a/installer/data/mysql/sysprefs.sql +++ b/installer/data/mysql/sysprefs.sql @@ -480,7 +480,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.1.4