Fix an uninitialized value warning, see bug 1059684

git-svn-id: svn://10.0.0.236/trunk@265942 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
bzrmirror%bugzilla.org 2015-04-16 01:45:50 +00:00
parent 785e422c18
commit 5a817efc4a
3 changed files with 3 additions and 3 deletions

View File

@ -1 +1 @@
9387
9388

View File

@ -1 +1 @@
13bd4ea98c5a4431b9b6849450e7761f6d29115a
dc3e779d94ef2be397660f102240d1d9c83d5147

View File

@ -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'),