From 60745f96ef1f85c9e611cbaaed0a6d96f82bc9fc Mon Sep 17 00:00:00 2001 From: Nick Clemens Date: Fri, 3 Nov 2023 20:25:14 +0000 Subject: [PATCH] Bug 34557: (follow-up) Tidy --- installer/data/mysql/atomicupdate/bug_34557.pl | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/installer/data/mysql/atomicupdate/bug_34557.pl b/installer/data/mysql/atomicupdate/bug_34557.pl index 213bc8484d6..90a4cd3ec38 100755 --- a/installer/data/mysql/atomicupdate/bug_34557.pl +++ b/installer/data/mysql/atomicupdate/bug_34557.pl @@ -7,11 +7,12 @@ return { my ($args) = @_; my ( $dbh, $out ) = @$args{qw(dbh out)}; - # Do you stuffs here - $dbh->do(q{ + $dbh->do( + q{ INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES ('SCOLoadCheckoutsByDefault','1','','If enabled, load the list of a patrons checkouts when they log in to the Self Checkout','YesNo') - }); + } + ); say $out "Added new system preference 'SCOLoadCheckoutsByDefault'"; }, -- 2.30.2