From 4dc0f989415c3bc17e5e80981382f5bc9befc070 Mon Sep 17 00:00:00 2001 From: Mark Tompsett Date: Wed, 13 Jul 2016 22:46:17 -0400 Subject: [PATCH] Bug 16920: sysprefs.sql - missing comma for MaxOpenSuggestions TEST PLAN --------- 1) back up DB 2) drop database koha_library; 3) create database koha_library; 4) run web browser install, choose ALL defaults -- notice the SQL syntax warning. 5) apply patch 6) repeat steps 2-4 -- notice SQL syntax warning is gone. 7) run koha qa test tools 8) restore db Signed-off-by: Chris Cormack Signed-off-by: Nick Clemens --- 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 c9a7c7e..4e947fd 100644 --- a/installer/data/mysql/sysprefs.sql +++ b/installer/data/mysql/sysprefs.sql @@ -236,7 +236,7 @@ INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` ('MaxItemsToDisplayForBatchDel','1000',NULL,'Display up to a given number of items in a single item deletionbatch.','Integer'), ('MaxItemsToProcessForBatchMod','1000',NULL,'Process up to a given number of items in a single item modification batch.','Integer'), ('maxItemsInSearchResults','20',NULL,'Specify the maximum number of items to display for each result on a page of results','free'), -('MaxOpenSuggestions','',NULL,'Limit the number of open suggestions a patron can have at once','Integer') +('MaxOpenSuggestions','',NULL,'Limit the number of open suggestions a patron can have at once','Integer'), ('maxoutstanding','5','','maximum amount withstanding to be able make holds','Integer'), ('maxRecordsForFacets','20',NULL,NULL,'Integer'), ('maxreserves','50','','Define maximum number of holds a patron can place','Integer'), -- 2.1.4