summaryrefslogtreecommitdiffstats
path: root/Bugzilla/DB.pm
diff options
context:
space:
mode:
authormkanat%bugzilla.org <>2006-10-17 14:58:40 +0200
committermkanat%bugzilla.org <>2006-10-17 14:58:40 +0200
commit124ab7cdf76cf58d8f5d772f51a2a142bb59d5ed (patch)
tree9179c5c9555f38070dc3590bb4ab3c597962fd99 /Bugzilla/DB.pm
parentbeb7bbd5ed0122343cdbf9ddfb83df511eb9adf9 (diff)
downloadbugzilla-124ab7cdf76cf58d8f5d772f51a2a142bb59d5ed.tar.gz
bugzilla-124ab7cdf76cf58d8f5d772f51a2a142bb59d5ed.tar.xz
Bug 192451: Checksetup should prioritize missing module whines
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> (module owner) a=myk
Diffstat (limited to 'Bugzilla/DB.pm')
-rw-r--r--Bugzilla/DB.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/DB.pm b/Bugzilla/DB.pm
index 6bb3b1255..f851e4533 100644
--- a/Bugzilla/DB.pm
+++ b/Bugzilla/DB.pm
@@ -135,7 +135,7 @@ sub bz_check_requirements {
my $dbd_ver = $db->{dbd_version};
my $sql_server = $db->{name};
my $sql_want = $db->{db_version};
- unless (have_vers($dbd, $dbd_ver, $output)) {
+ unless (have_vers({ module => $dbd, version => $dbd_ver }, $output)) {
my $command = install_command($dbd);
my $root = ROOT_USER;
my $version = $dbd_ver ? " $dbd_ver or higher" : '';