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 /attachment.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 'attachment.cgi')
-rwxr-xr-x | attachment.cgi | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/attachment.cgi b/attachment.cgi index 504ade424..b577f7415 100755 --- a/attachment.cgi +++ b/attachment.cgi @@ -676,8 +676,7 @@ sub update { if (defined $cgi->param('delta_ts') && $cgi->param('delta_ts') ne $attachment->modification_time) { - ($vars->{'operations'}) = - Bugzilla::Bug::GetBugActivity($bug->id, $attachment->id, $cgi->param('delta_ts')); + ($vars->{'operations'}) = $bug->get_activity($attachment->id, $cgi->param('delta_ts')); # The token contains the old modification_time. We need a new one. $cgi->param('token', issue_hash_token([$attachment->id, $attachment->modification_time])); |