From a318acd15798b5288de7c580c4774b4d5d64fb22 Mon Sep 17 00:00:00 2001
From: Andrew Isherwood <andrew.isherwood@ptfs-europe.com>
Date: Fri, 17 Sep 2021 12:04:46 +0100
Subject: [PATCH] Bug 27378: (follow-up) Fix update delimiter

As suggested by Nick in Comment #64

(cherry picked from commit cf64bc373dcec60c51dccfe2e2f9359500c6cc9b)
Signed-off-by: Sam Lau <samalau@gmail.com>
---
 .../atomicupdate/bug_27378_add_CookieConsentPopup_syspref.perl  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/installer/data/mysql/atomicupdate/bug_27378_add_CookieConsentPopup_syspref.perl b/installer/data/mysql/atomicupdate/bug_27378_add_CookieConsentPopup_syspref.perl
index b7217c2800..0420876959 100644
--- a/installer/data/mysql/atomicupdate/bug_27378_add_CookieConsentPopup_syspref.perl
+++ b/installer/data/mysql/atomicupdate/bug_27378_add_CookieConsentPopup_syspref.perl
@@ -1,6 +1,6 @@
 $DBversion = 'XXX'; # will be replaced by the RM
 if( CheckVersion( $DBversion ) ) {
-    $dbh->do( q| INSERT IGNORE INTO systempreferences (variable, value, explanation, options, type) VALUES ('CookieConsentPopup', '', 'Show the following HTML in the cookie consent popup', '70|10', 'Textarea'); | );
+    $dbh->do( q{INSERT IGNORE INTO systempreferences (variable, value, explanation, options, type) VALUES ('CookieConsentPopup', '', 'Show the following HTML in the cookie consent popup', '70|10', 'Textarea');} );
 
     # Always end with this (adjust the bug info)
     SetVersion( $DBversion );
-- 
2.30.2