summaryrefslogtreecommitdiffstats
path: root/Bugzilla/WebService
diff options
context:
space:
mode:
authorFrédéric Buclin <LpSolit@gmail.com>2011-12-14 14:20:17 +0100
committerFrédéric Buclin <LpSolit@gmail.com>2011-12-14 14:20:17 +0100
commitc5d33db7dbe5d310ad9e9574da030eadbd1c90d3 (patch)
tree0ebb6f906ee685cf84dc3fd34d2a2b945008f08c /Bugzilla/WebService
parentcc86e1bc247787a6dd28f4604b93e08415ecd4fb (diff)
downloadbugzilla-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 'Bugzilla/WebService')
-rw-r--r--Bugzilla/WebService/Bug.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/WebService/Bug.pm b/Bugzilla/WebService/Bug.pm
index eece1af6c..b0f8c0a0c 100644
--- a/Bugzilla/WebService/Bug.pm
+++ b/Bugzilla/WebService/Bug.pm
@@ -355,7 +355,7 @@ sub history {
$bug_id = $bug->id;
$item{id} = $self->type('int', $bug_id);
- my ($activity) = Bugzilla::Bug::GetBugActivity($bug_id);
+ my ($activity) = $bug->get_activity;
my @history;
foreach my $changeset (@$activity) {