Commit da262b50 authored by mkanat%bugzilla.org's avatar mkanat%bugzilla.org

Was getting an "uninitialized value" error in Bugzilla::Config when running…

Was getting an "uninitialized value" error in Bugzilla::Config when running checksetup.pl, because of the checkin from bug 514913.
parent 30f871be
......@@ -195,7 +195,9 @@ sub update_params {
# Convert the old "ssl" parameter to the new "ssl_redirect" parameter.
# Both "authenticated sessions" and "always" turn on "ssl_redirect"
# when upgrading.
$param->{'ssl_redirect'} = 1 if $param->{'ssl'} ne 'never';
if (exists $param->{'ssl'} and $param->{'ssl'} ne 'never') {
$param->{'ssl_redirect'} = 1;
}
# --- DEFAULTS FOR NEW PARAMS ---
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment