From 0b0dea0e9a173de9e3a5bf75fe977336d8477ed0 Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Tue, 10 Feb 2026 14:29:59 +0000 Subject: [PATCH] Bug 3492: (follow-up) Add missing TitleHoldFeeStrategy to sysprefs.sql The TitleHoldFeeStrategy system preference was added in the database update script (251200023.pl) but was missing from sysprefs.sql, causing issues for fresh installations that don't run the update script. This preference likely disappeared during rebases. Adding it in the correct alphabetical position between 'timeout' and 'todaysIssuesDefaultSortOrder'. --- installer/data/mysql/mandatory/sysprefs.sql | 1 + 1 file changed, 1 insertion(+) diff --git a/installer/data/mysql/mandatory/sysprefs.sql b/installer/data/mysql/mandatory/sysprefs.sql index 0f2f582faf2..7721c9b7672 100644 --- a/installer/data/mysql/mandatory/sysprefs.sql +++ b/installer/data/mysql/mandatory/sysprefs.sql @@ -827,6 +827,7 @@ INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` ('ThingISBN','0',NULL,'Use with FRBRizeEditions. If ON, Koha will use the ThingISBN web service in the Editions tab on the detail pages.','YesNo'), ('TimeFormat','24hr','12hr|24hr','Defines the global time format for visual output.','Choice'), ('timeout','1d',NULL,'Inactivity timeout for cookies authentication','Free'), +('TitleHoldFeeStrategy','highest','highest|lowest|most_common','Strategy for calculating fees on title-level holds when items have different fees: highest = charge maximum fee, lowest = charge minimum fee, most_common = charge most frequently occurring fee','Choice'), ('todaysIssuesDefaultSortOrder','desc','asc|desc','Specify the sort order of Todays Issues on the circulation page','Choice'), ('TraceCompleteSubfields','0',NULL,'Force subject tracings to only match complete subfields.','YesNo'), ('TraceSubjectSubdivisions','0',NULL,'Create searches on all subdivisions for subject tracings.','YesNo'), -- 2.53.0