From cc989dbe19fd70ef661d8e336a4ab0d785323549 Mon Sep 17 00:00:00 2001 From: Isaac Connor Date: Wed, 19 Nov 2014 13:54:10 -0500 Subject: [PATCH] fix putting the mode back. I merged it to the wrong place --- scripts/zmupdate.pl.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/zmupdate.pl.in b/scripts/zmupdate.pl.in index c7e3caeef..41a081fc1 100644 --- a/scripts/zmupdate.pl.in +++ b/scripts/zmupdate.pl.in @@ -347,8 +347,8 @@ if ( $interactive ) { my $sth = $dbh->prepare_cached( $sql ) or die( "Can't prepare '$sql': ".$dbh->errstr() ); my $res = $sth->execute() or die( "Can't execute: ".$sth->errstr() ); $sth->finish(); - $dbh->do(q|SET sql_mode=''|); # Set mode back to default } + $dbh->do(q|SET sql_mode=''|); # Set mode back to default } } } # end if interactive