From 91c2e621c67779368782dd82f82ff5810d084246 Mon Sep 17 00:00:00 2001 From: Andrew Isherwood 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 --- .../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.20.1