From 85bb266ec52df7baa3da77cab961eb7fcc18d330 Mon Sep 17 00:00:00 2001 From: "bbaetz%acm.org" <> Date: Fri, 7 Feb 2003 15:19:01 +0000 Subject: Bug 191863 - Clean up Bugzilla.pm r=gerv, justdave a=justdave --- Bugzilla/DB.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Bugzilla/DB.pm') diff --git a/Bugzilla/DB.pm b/Bugzilla/DB.pm index 681b0597a..23078369a 100644 --- a/Bugzilla/DB.pm +++ b/Bugzilla/DB.pm @@ -60,7 +60,7 @@ sub SendSQL { require Bugzilla; - $_current_sth = Bugzilla->instance->dbh->prepare($str); + $_current_sth = Bugzilla->dbh->prepare($str); return $_current_sth->execute; } @@ -73,7 +73,7 @@ sub SqlQuote { require Bugzilla; - my $res = Bugzilla->instance->dbh->quote($str); + my $res = Bugzilla->dbh->quote($str); trick_taint($res); -- cgit v1.2.3-24-g4f1b