From 1879eba3f00663b321333b4adea86d488fbf6b5b Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Thu, 9 Nov 2023 14:20:56 +0000 Subject: [PATCH] Bug 35048: (follow-up) Atomic update fixes --- ...-move-SCOMainUserBlock-to-additional-contents.pl | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/installer/data/mysql/atomicupdate/bug-35048-move-SCOMainUserBlock-to-additional-contents.pl b/installer/data/mysql/atomicupdate/bug-35048-move-SCOMainUserBlock-to-additional-contents.pl index faed6465e8..0cc554b074 100755 --- a/installer/data/mysql/atomicupdate/bug-35048-move-SCOMainUserBlock-to-additional-contents.pl +++ b/installer/data/mysql/atomicupdate/bug-35048-move-SCOMainUserBlock-to-additional-contents.pl @@ -30,9 +30,12 @@ return { undef, $insert_id, $scomainuserblock ); - # Remove old system preference - $dbh->do("DELETE FROM systempreferences WHERE variable='SCOMainUserBlock'"); - say $out "Bug 35048 update done"; + say $out "Added 'SCOMainUserBlock' HTML customization"; } - } - } + + # Remove old system preference + $dbh->do("DELETE FROM systempreferences WHERE variable='SCOMainUserBlock'"); + say $out "Removed system preference 'SCOMainUserBlock'"; + + }, +}; -- 2.30.2