summaryrefslogtreecommitdiffstats
path: root/defparams.pl
diff options
context:
space:
mode:
authorjustdave%syndicomm.com <>2004-03-18 14:55:41 +0100
committerjustdave%syndicomm.com <>2004-03-18 14:55:41 +0100
commit39a329b9ac46424a4552e8c68e44467173a8238c (patch)
tree57da556be3e1e1e7106e314738b4a9cf1e378703 /defparams.pl
parent3d59b2bd807ec35c511fd76df11b2cbb61289242 (diff)
downloadbugzilla-39a329b9ac46424a4552e8c68e44467173a8238c.tar.gz
bugzilla-39a329b9ac46424a4552e8c68e44467173a8238c.tar.xz
Bug 24496: Adds a parameter "noresolveonopenblockers" which when enabled, prevents bugs from being closed if there are any bugs blocking it which are still open.
Patch by Andreas Höfler <andreas.hoefler@bearingpoint.com> r= justdave, a= myk
Diffstat (limited to 'defparams.pl')
-rw-r--r--defparams.pl9
1 files changed, 8 insertions, 1 deletions
diff --git a/defparams.pl b/defparams.pl
index 1d492de20..d25f11910 100644
--- a/defparams.pl
+++ b/defparams.pl
@@ -1169,7 +1169,14 @@ Reason: %reason%
type => 't',
default => '',
},
-);
+ {
+ name => 'noresolveonopenblockers',
+ desc => 'Don\'t allow bugs to be resolved as fixed if they have unresolved dependencies.',
+ type => 'b',
+ default => 0,
+ },
+
+);
1;