summaryrefslogtreecommitdiffstats
path: root/Bugzilla/DB.pm
diff options
context:
space:
mode:
Diffstat (limited to 'Bugzilla/DB.pm')
-rw-r--r--Bugzilla/DB.pm4
1 files changed, 2 insertions, 2 deletions
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);