https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=41834 --- Comment #24 from Martin Renvoize (ashimema) <martin.renvoize@openfifth.co.uk> --- Created attachment 195690 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=195690&action=edit Bug 41834: Fix GetDelimiterChoices after options column removed from sysprefs.sql We removed the `options` column from all sysprefs.sql INSERT statements, leaving CSVDelimiter.options as NULL in the DB. This broke GetDelimiterChoices() which relied on that column for the list of valid delimiter choices, resulting in empty dropdowns across all report pages and an uninitialized value warning in the test suite. Fix by hardcoding the choices (matching admin.pref) and reading the current value via C4::Context->preference() instead of a raw DB query. -- You are receiving this mail because: You are watching all bug changes.