From 052807aaf519c60cd580f07c42c0a58900de8912 Mon Sep 17 00:00:00 2001 From: Isaac Connor Date: Sun, 15 Jan 2017 10:57:39 -0500 Subject: [PATCH] remove extra my --- 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 b0f98bbd6..ee1829a99 100644 --- a/scripts/zmupdate.pl.in +++ b/scripts/zmupdate.pl.in @@ -457,7 +457,7 @@ if ( $version ) close $fh; $dbh->do($sql) or die $dbh->errstr(); print( "\nDatabase successfully upgraded to version $version.\n" ); - my $sql = "update Config set Value = ? where Name = 'ZM_DYN_DB_VERSION'"; + $sql = "update Config set Value = ? where Name = 'ZM_DYN_DB_VERSION'"; my $sth = $dbh->prepare_cached( $sql ) or die( "Can't prepare '$sql': ".$dbh->errstr() ); my $res = $sth->execute( $version ) or die( "Can't execute: ".$sth->errstr() ); }