diff --git a/post_bug.cgi b/post_bug.cgi index d3300b8df..eefe6d04d 100755 --- a/post_bug.cgi +++ b/post_bug.cgi @@ -182,8 +182,8 @@ $bug->update; if ($ARGS->{cloned_bug_id}) { # Add a comment to cloned bug - my $cmt = "Bug ".$bug->id." was cloned from ". - ($ARGS->{cloned_comment} =~ /(\d+)/ ? "comment $1" : 'this bug'); + my $cmt = "Bug ".$bug->id." (".$bug->short_desc.") was cloned from ". + ($ARGS->{cloned_comment} =~ /(\d+)/ && $1 ? "comment $1" : 'this bug'); my $cloned_bug = Bugzilla::Bug->check($ARGS->{cloned_bug_id}); $cloned_bug->add_comment($cmt); Bugzilla::Hook::process('post_bug_cloned_bug', { bug => $bug, cloned_bug => $cloned_bug });