diff options
author | mkanat%bugzilla.org <> | 2009-11-10 02:36:02 +0100 |
---|---|---|
committer | mkanat%bugzilla.org <> | 2009-11-10 02:36:02 +0100 |
commit | 5d516a6ae2f021d2e276a842c24dff74d3448c45 (patch) | |
tree | d4aebc8e20cc8d207834d36b9663b87ecf593714 /process_bug.cgi | |
parent | 88a69f2048d03b845e8e04fd23b1141df9fb8ee1 (diff) | |
download | bugzilla-5d516a6ae2f021d2e276a842c24dff74d3448c45.tar.gz bugzilla-5d516a6ae2f021d2e276a842c24dff74d3448c45.tar.xz |
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 'process_bug.cgi')
-rwxr-xr-x | process_bug.cgi | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/process_bug.cgi b/process_bug.cgi index 36091b892..504fcacc3 100755 --- a/process_bug.cgi +++ b/process_bug.cgi @@ -168,8 +168,7 @@ if (defined $cgi->param('delta_ts') $vars->{'start_at'} = $cgi->param('longdesclength'); # Always sort midair collision comments oldest to newest, # regardless of the user's personal preference. - $vars->{'comments'} = Bugzilla::Bug::GetComments($first_bug->id, - "oldest_to_newest"); + $vars->{'comments'} = $first_bug->comments({ order => "oldest_to_newest" }); $vars->{'bug'} = $first_bug; # The token contains the old delta_ts. We need a new one. $cgi->param('token', issue_hash_token([$first_bug->id, $first_bug->delta_ts])); |