From 2e8ad44674531511fd397048f689ec0a120e5937 Mon Sep 17 00:00:00 2001 From: Alexander Schranz Date: Wed, 2 Nov 2022 15:24:19 +0100 Subject: [PATCH] Fix migrations of radio buttons --- UPGRADE.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/UPGRADE.md b/UPGRADE.md index c603d00d..837cb271 100644 --- a/UPGRADE.md +++ b/UPGRADE.md @@ -273,9 +273,9 @@ SET IF( dyn.radioButtons is not NULL, CONCAT( - '\"radioButtons\":', + '\"radioButtons\":\"', replace(replace(replace(replace(replace(replace(replace(replace(dyn.radioButtons, '\\', '\\\\'), '/', '\\/'), '"', '\\\"'), CHAR(10), '\\n'), CHAR(9), '\\t'), CHAR(8), '\\b'), CHAR(13), '\\r'), CHAR(12), '\\f'), - '[]' + '\"' ), NULL )