aboutsummaryrefslogtreecommitdiffstats
path: root/Bugzilla/Config/Common.pm
diff options
context:
space:
mode:
authorlpsolit%gmail.com <>2006-07-03 15:53:24 +0000
committerlpsolit%gmail.com <>2006-07-03 15:53:24 +0000
commit3d317ca092cec05ad9dcdd3815d74bedbd9f3412 (patch)
tree20e379143241aee23d4dc506623f302e68698613 /Bugzilla/Config/Common.pm
parent1e087ef9416da23989f9134866586ea02df156da (diff)
downloadbugs-3d317ca092cec05ad9dcdd3815d74bedbd9f3412.tar
bugs-3d317ca092cec05ad9dcdd3815d74bedbd9f3412.tar.gz
bugs-3d317ca092cec05ad9dcdd3815d74bedbd9f3412.tar.bz2
bugs-3d317ca092cec05ad9dcdd3815d74bedbd9f3412.tar.xz
bugs-3d317ca092cec05ad9dcdd3815d74bedbd9f3412.zip
Bug 328186: checksetup.pl should display the version of Bugzilla - Patch by Rémi Zara <remi_zara@mac.com> r=mkanat a=justdave
Diffstat (limited to 'Bugzilla/Config/Common.pm')
-rw-r--r--Bugzilla/Config/Common.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Config/Common.pm b/Bugzilla/Config/Common.pm
index 416a87849..9fe648d01 100644
--- a/Bugzilla/Config/Common.pm
+++ b/Bugzilla/Config/Common.pm
@@ -299,7 +299,7 @@ sub check_mail_delivery_method {
sub check_notification {
my $option = shift;
my @current_version =
- ($Bugzilla::Config::VERSION =~ m/^(\d+)\.(\d+)(?:(rc|\.)(\d+))?\+?$/);
+ (BUGZILLA_VERSION =~ m/^(\d+)\.(\d+)(?:(rc|\.)(\d+))?\+?$/);
if ($current_version[1] % 2 && $option eq 'stable_branch_release') {
return "You are currently running a development snapshot, and so your " .
"installation is not based on a branch. If you want to be notified " .