From 052f967188651adc8e3ed8b657cc36f44b7265a8 Mon Sep 17 00:00:00 2001 From: tonnesen Date: Tue, 25 Jun 2002 18:24:33 +0000 Subject: [PATCH] Fixed missing semicolons. --- updater/updatedatabase | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/updater/updatedatabase b/updater/updatedatabase index a448be237b..2978ddb210 100755 --- a/updater/updatedatabase +++ b/updater/updatedatabase @@ -251,13 +251,13 @@ unless ($branchcategories{'codedescription'} eq 'text') { # Populate systempreferences if it is empty -$sth=$dbh->prepare("select value from systempreferences where variable='autoMemberNum'") +$sth=$dbh->prepare("select value from systempreferences where variable='autoMemberNum'"); $sth->execute; unless ($sth->rows) { my $sth=$dbh->prepare("insert into systempreferences (variable, value) values ('autoMemberNum', '1')"); $sth->execute; } -$sth=$dbh->prepare("select value from systempreferences where variable='acquisitions'") +$sth=$dbh->prepare("select value from systempreferences where variable='acquisitions'"); $sth->execute; unless ($sth->rows) { my $sth=$dbh->prepare("insert into systempreferences (variable, value) values ('acquisitions', 'simple')"); @@ -271,6 +271,9 @@ $dbh->disconnect; exit; # $Log$ +# Revision 1.4.2.10 2002/06/25 18:24:33 tonnesen +# Fixed missing semicolons. +# # Revision 1.4.2.9 2002/06/25 16:57:39 tonnesen # Fixed bug. $sth->execute after $sti->prepare. # -- 2.39.5