diff options
author | 2009-11-10 01:36:02 +0000 | |
---|---|---|
committer | 2009-11-10 01:36:02 +0000 | |
commit | 5d516a6ae2f021d2e276a842c24dff74d3448c45 (patch) | |
tree | d4aebc8e20cc8d207834d36b9663b87ecf593714 /email_in.pl | |
parent | Bug 283609 - Search for relative dates in deadline (diff) | |
download | bugzilla-5d516a6ae2f021d2e276a842c24dff74d3448c45.tar.gz bugzilla-5d516a6ae2f021d2e276a842c24dff74d3448c45.tar.bz2 bugzilla-5d516a6ae2f021d2e276a842c24dff74d3448c45.zip |
Bug 472217: Create a Bugzilla::Comment object and eliminate GetComments
Patch by Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=LpSolit
Diffstat (limited to 'email_in.pl')
-rwxr-xr-x | email_in.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/email_in.pl b/email_in.pl index 1ec2a19df..2d0ebe571 100755 --- a/email_in.pl +++ b/email_in.pl @@ -204,7 +204,7 @@ sub process_bug { foreach my $field (keys %fields) { $cgi->param(-name => $field, -value => $fields{$field}); } - $cgi->param('longdesclength', scalar $bug->longdescs); + $cgi->param('longdesclength', scalar @{ $bug->comments }); $cgi->param('token', issue_hash_token([$bug->id, $bug->delta_ts])); require 'process_bug.cgi'; |