summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Comment.pm
diff options
context:
space:
mode:
Diffstat (limited to 'Bugzilla/Comment.pm')
-rw-r--r--Bugzilla/Comment.pm10
1 files changed, 5 insertions, 5 deletions
diff --git a/Bugzilla/Comment.pm b/Bugzilla/Comment.pm
index a8f915bfd..7c2d5c4ea 100644
--- a/Bugzilla/Comment.pm
+++ b/Bugzilla/Comment.pm
@@ -468,12 +468,12 @@ sub count {
my $dbh = Bugzilla->dbh;
($self->{'count'}) = $dbh->selectrow_array(
"SELECT COUNT(*)
- FROM longdescs
- WHERE bug_id = ?
- AND bug_when <= ?",
- undef, $self->bug_id, $self->creation_ts);
+ FROM longdescs
+ WHERE bug_id = ?
+ AND comment_id < ?",
+ undef, $self->bug_id, $self->id);
- return --$self->{'count'};
+ return $self->{'count'};
}
1;