From 93515a1c0bf16dae47f934234e78309d4444642b Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Tue, 4 Jan 2022 14:21:19 +0100 Subject: [PATCH] Bug 29390: Fix syntax error in atomic update Content-Type: text/plain; charset=utf-8 Test plan: Run dbrev or new install. Signed-off-by: Marcel de Rooy --- installer/data/mysql/atomicupdate/bug_29336_2.pl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/installer/data/mysql/atomicupdate/bug_29336_2.pl b/installer/data/mysql/atomicupdate/bug_29336_2.pl index 5629c261a8..cf97b304cb 100755 --- a/installer/data/mysql/atomicupdate/bug_29336_2.pl +++ b/installer/data/mysql/atomicupdate/bug_29336_2.pl @@ -9,10 +9,10 @@ return { my ($dbh, $out) = @$args{qw(dbh out)}; my %fix_tables = ( 'additional_fields' => 'authorised_value_category', - 'auth_subfield_structure' => 'authorised_value' - 'auth_tag_structure' => 'authorised_value' + 'auth_subfield_structure' => 'authorised_value', + 'auth_tag_structure' => 'authorised_value', 'borrower_attribute_types' => 'authorised_value_category', - 'club_template_enrollment_fields' => 'authorised_value_category' + 'club_template_enrollment_fields' => 'authorised_value_category', 'club_template_fields' => 'authorised_value_category', 'marc_tag_structure' => 'authorised_value', ); -- 2.30.2