From 66e1e0b427e621060c81c2c7161315553fa3b4f9 Mon Sep 17 00:00:00 2001 From: JT Smith Date: Sun, 7 Mar 2004 04:51:18 +0000 Subject: [PATCH] removing debug --- docs/upgrades/upgrade_5.9.9-6.0.0.pl | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/docs/upgrades/upgrade_5.9.9-6.0.0.pl b/docs/upgrades/upgrade_5.9.9-6.0.0.pl index 57620c1fb..569db4be8 100644 --- a/docs/upgrades/upgrade_5.9.9-6.0.0.pl +++ b/docs/upgrades/upgrade_5.9.9-6.0.0.pl @@ -409,10 +409,7 @@ while (my $data = $sth->hashRef) { my $id = undef; next if ($data->{databaseLinkId} > 0); foreach my $dsn (keys %dblink) { -print $dsn."\n"; -print $dblink{$dsn}{user}."\n"; - if ($dsn eq $data->{DSN} ){ #&& $dblink{$dsn}{user} eq $data->{username}) { -print "got here"; + if ($dsn eq $data->{DSN} && $dblink{$dsn}{user} eq $data->{username}) { $id = $dblink{$dsn}{id}; last; }