From fa680c215d60f1cdbf8294a1280f1b81984764f4 Mon Sep 17 00:00:00 2001 From: JT Smith Date: Thu, 17 Feb 2005 18:17:25 +0000 Subject: [PATCH] fixed a problem with the new upgrade thing --- sbin/upgrade.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sbin/upgrade.pl b/sbin/upgrade.pl index 2ae60ebdb..8ec7b8396 100644 --- a/sbin/upgrade.pl +++ b/sbin/upgrade.pl @@ -278,7 +278,7 @@ foreach my $config (keys %config) { my $cmd = $clicmd." -u".$config{$config}{dbuser}." -p".$config{$config}{dbpass}; $cmd .= " --host=".$config{$config}{host} if ($config{$config}{host}); $cmd .= " --port=".$config{$config}{port} if ($config{$config}{port}); - $cmd .= " --database=".$config{$config}{db}." -e \"delete from settings where name='upgrading'\""; + $cmd .= " --database=".$config{$config}{db}." -e \"delete from settings where name='specialState'\""; unless (system($cmd)) { print "OK\n" unless ($quiet); } else {