summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Config/Core.pm
diff options
context:
space:
mode:
Diffstat (limited to 'Bugzilla/Config/Core.pm')
-rw-r--r--Bugzilla/Config/Core.pm9
1 files changed, 9 insertions, 0 deletions
diff --git a/Bugzilla/Config/Core.pm b/Bugzilla/Config/Core.pm
index 738c28fe2..3e1c66623 100644
--- a/Bugzilla/Config/Core.pm
+++ b/Bugzilla/Config/Core.pm
@@ -103,6 +103,15 @@ sub get_param_list {
name => 'shutdownhtml',
type => 'l',
default => ''
+ },
+
+ {
+ name => 'upgrade_notification',
+ type => 's',
+ choices => ['development_snapshot', 'latest_stable_release',
+ 'stable_branch_release', 'disabled'],
+ default => 'latest_stable_release',
+ checker => \&check_notification
} );
return @param_list;
}