@@ -, +, @@ --- .../atomicupdate/bug_27378_add_CookieConsentPopup_syspref.perl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/installer/data/mysql/atomicupdate/bug_27378_add_CookieConsentPopup_syspref.perl +++ a/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 ); --