* add comment to explain 0:0
add_setting({
name => 'ui_experiments',
options => ['on', 'off'],
- default => 'off',
+ default => 'on',
category => 'User Interface'
});
add_setting({
print "Creating needinfo flag ... " .
"enable the Needinfo feature by editing the flag's properties.\n";
- # Initially populate the list of exclusions as __Any__:__Any__ to
- # allow admin to decide which products to enable the flag for.
+ # inclusions 0:0 maps to __ANY__ : __ANY__ in the UI,
+ # meaning needinfo is enabled for all products and components by default
my $flagtype = Bugzilla::FlagType->create({
name => 'needinfo',
description => "Set this flag when the bug is in need of additional information",
is_multiplicable => 0,
request_group => '',
grant_group => '',
- inclusions => [],
- exclusions => ['0:0'],
+ inclusions => ['0:0'],
+ exclusions => [],
});
}