From: Frédéric Buclin Date: Thu, 16 Apr 2015 01:33:27 +0000 (+0200) Subject: Fix an uninitialized value warning, see bug 1059684 X-Git-Tag: release-5.1.1~277 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dc3e779d94ef2be397660f102240d1d9c83d5147;p=thirdparty%2Fbugzilla.git Fix an uninitialized value warning, see bug 1059684 --- diff --git a/process_bug.cgi b/process_bug.cgi index a39f0cc45e..3deeb5f2e5 100755 --- a/process_bug.cgi +++ b/process_bug.cgi @@ -234,7 +234,7 @@ if (should_set('keywords')) { } if (should_set('comment')) { my $is_markdown = ($user->use_markdown - && $cgi->param('use_markdown') eq '1') ? 1 : 0; + && $cgi->param('use_markdown')) ? 1 : 0; $set_all_fields{comment} = { body => scalar $cgi->param('comment'),