diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2011-12-14 14:20:17 +0100 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2011-12-14 14:20:17 +0100 |
commit | c5d33db7dbe5d310ad9e9574da030eadbd1c90d3 (patch) | |
tree | 0ebb6f906ee685cf84dc3fd34d2a2b945008f08c /process_bug.cgi | |
parent | cc86e1bc247787a6dd28f4604b93e08415ecd4fb (diff) | |
download | bugzilla-c5d33db7dbe5d310ad9e9574da030eadbd1c90d3.tar.gz bugzilla-c5d33db7dbe5d310ad9e9574da030eadbd1c90d3.tar.xz |
Bug 169752: Activity log should fuse data fields split because they didn't fit
r=glob a=LpSolit
Diffstat (limited to 'process_bug.cgi')
-rwxr-xr-x | process_bug.cgi | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/process_bug.cgi b/process_bug.cgi index bf18a45d3..2d04f73c1 100755 --- a/process_bug.cgi +++ b/process_bug.cgi @@ -143,9 +143,7 @@ if (defined $cgi->param('delta_ts')) my $delta_ts_z = datetime_from($cgi->param('delta_ts')); my $first_delta_tz_z = datetime_from($first_bug->delta_ts); if ($first_delta_tz_z ne $delta_ts_z) { - ($vars->{'operations'}) = - Bugzilla::Bug::GetBugActivity($first_bug->id, undef, - scalar $cgi->param('delta_ts')); + ($vars->{'operations'}) = $first_bug->get_activity(undef, $cgi->param('delta_ts')); $vars->{'title_tag'} = "mid_air"; |