From 5d7db25b00fd1191374650c5fe5a6da6d02fcb0c Mon Sep 17 00:00:00 2001 From: Marcel de Rooy Date: Fri, 20 Apr 2018 08:21:33 +0200 Subject: [PATCH] Bug 19974: (QA follow-up) Do not use bar separator in atomic update The multiple select saves the selected values with a comma. Furthermore, preferences.pl also splits on a comma. In other words, the upgrade will not work with the bar character. All options will be deselected. Signed-off-by: Marcel de Rooy Signed-off-by: Jonathan Druart --- installer/data/mysql/atomicupdate/bug_19974.perl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installer/data/mysql/atomicupdate/bug_19974.perl b/installer/data/mysql/atomicupdate/bug_19974.perl index 78ff577d0a..602fa895b7 100644 --- a/installer/data/mysql/atomicupdate/bug_19974.perl +++ b/installer/data/mysql/atomicupdate/bug_19974.perl @@ -8,7 +8,7 @@ if( CheckVersion( $DBversion ) ) { UPDATE systempreferences SET type="multiple", options="batchmod|moredetail|cronjob|additem", - value="batchmod|moredetail|cronjob|additem" + value="batchmod,moredetail,cronjob,additem" WHERE variable="MarkLostItemsAsReturned" }); } else { -- 2.39.2