summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Constants.pm
diff options
context:
space:
mode:
Diffstat (limited to 'Bugzilla/Constants.pm')
-rw-r--r--Bugzilla/Constants.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Constants.pm b/Bugzilla/Constants.pm
index 852c9c362..7d5f6fa2e 100644
--- a/Bugzilla/Constants.pm
+++ b/Bugzilla/Constants.pm
@@ -208,7 +208,7 @@ use Memoize;
sub BUGZILLA_VERSION {
my $bugzilla_version = '4.2';
eval { require Bugzilla } || return $bugzilla_version;
- return Bugzilla->params->{bugzilla_version} || $bugzilla_version;
+ eval { Bugzilla->VERSION } || $bugzilla_version;
}
# A base link to the current REST Documentation. We place it here