From a326739219f805889bbcdf73f8e66bcfc17964e1 Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Mon, 29 Mar 2021 10:01:37 +0100 Subject: [PATCH] Bug 14957: (QA follow-up) Fix syntax error in atomicupdate Signed-off-by: Martin Renvoize --- .../mysql/atomicupdate/bug_14957-marc-merge-rules.perl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/installer/data/mysql/atomicupdate/bug_14957-marc-merge-rules.perl b/installer/data/mysql/atomicupdate/bug_14957-marc-merge-rules.perl index d9a9492eba..d61a8e2675 100644 --- a/installer/data/mysql/atomicupdate/bug_14957-marc-merge-rules.perl +++ b/installer/data/mysql/atomicupdate/bug_14957-marc-merge-rules.perl @@ -1,7 +1,7 @@ -$DBversion = 'XXX'; # will be replaced by the RM -if( CheckVersion( $DBversion ) ) { +$DBversion = 'XXX'; # will be replaced by the RM +if ( CheckVersion($DBversion) ) { - unless (TableExists('marc_overlay_rules')) { + unless ( TableExists('marc_overlay_rules') ) { $dbh->do(q{ CREATE TABLE IF NOT EXISTS `marc_overlay_rules` ( `id` int(11) NOT NULL auto_increment, @@ -35,5 +35,5 @@ if( CheckVersion( $DBversion ) ) { ); }); - NewVersion( $DBversion, 14957, "Add a way to define overlay rules for incoming MARC records)\n"; + NewVersion( $DBversion, 14957, "Add a way to define overlay rules for incoming MARC records)\n" ); } -- 2.20.1