From c475aa918573728c33ffccfa7ce867873923400e 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 Content-Type: text/plain; charset=utf-8 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 --- 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 78ff577..602fa89 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.1.4