From 5a993821c3f276f89ad080e70b1f7d6564b78c2f Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Sun, 5 Nov 2023 01:40:17 +0000 Subject: [PATCH] Bug 33217: (QA follow-up) Tiny tidy of atomicupdate Just adds an end and removes the commented line. Signed-off-by: Katrin Fischer --- installer/data/mysql/atomicupdate/bug_33217.pl | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/installer/data/mysql/atomicupdate/bug_33217.pl b/installer/data/mysql/atomicupdate/bug_33217.pl index a1c45c0ee7..2094f077c7 100755 --- a/installer/data/mysql/atomicupdate/bug_33217.pl +++ b/installer/data/mysql/atomicupdate/bug_33217.pl @@ -7,7 +7,6 @@ return { my ($args) = @_; my ( $dbh, $out ) = @$args{qw(dbh out)}; - # Do you stuffs here $dbh->do( q{ INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES @@ -15,6 +14,6 @@ return { ('AuthorLinkSortOrder','asc','asc|dsc|az|za','Specify the default sort order for author links','Choice') } ); - say $out "Added new system preferences 'AuthorLinkSortBy' 'AuthorLinkSortOrder'"; + say $out "Added new system preferences 'AuthorLinkSortBy' and 'AuthorLinkSortOrder'"; }, }; -- 2.30.2