From 79ec29975ac8d1a4f49b83ed404a1ee04c33b73c Mon Sep 17 00:00:00 2001 From: Gervase Markham Date: Mon, 30 Mar 2015 18:53:57 +0100 Subject: Bug 1007605 - Make FIXED non-fixed, by changing noresolveonopenblockers to define what the fixed resolution is. r,a=glob --- Bugzilla/Config.pm | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'Bugzilla/Config.pm') diff --git a/Bugzilla/Config.pm b/Bugzilla/Config.pm index ebd5f8ef6..51d65397e 100644 --- a/Bugzilla/Config.pm +++ b/Bugzilla/Config.pm @@ -204,6 +204,10 @@ sub update_params { $new_params{'search_allow_no_criteria'} = $param->{'specific_search_allow_empty_words'}; } + if (exists $param->{'noresolveonopenblockers'}) { + $new_params{'resolution_forbidden_with_open_blockers'} = $param->{'noresolveonopenblockers'} ? 'FIXED' : ""; + } + # --- DEFAULTS FOR NEW PARAMS --- _load_params unless %params; -- cgit v1.2.3-24-g4f1b