diff options
author | bbaetz%acm.org <> | 2003-04-27 16:20:36 +0200 |
---|---|---|
committer | bbaetz%acm.org <> | 2003-04-27 16:20:36 +0200 |
commit | 8449ddc1397a699e8473ee657b18e1ed6928f4bb (patch) | |
tree | 5a37c734d6bc56f529d0dd81537de76a0c0fd87e /Bugzilla | |
parent | f016a7980404372d9855215a5107968beb3c82f4 (diff) | |
download | bugzilla-8449ddc1397a699e8473ee657b18e1ed6928f4bb.tar.gz bugzilla-8449ddc1397a699e8473ee657b18e1ed6928f4bb.tar.xz |
Bug 180086 - Rename 'count' column in votes tables
patch by bugzilla@chimpychompy.org (GavinS)
r=bbaetz,justdave
a=justdave
Diffstat (limited to 'Bugzilla')
-rwxr-xr-x | Bugzilla/Bug.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Bug.pm b/Bugzilla/Bug.pm index 9e8e44c55..750fd8186 100755 --- a/Bugzilla/Bug.pm +++ b/Bugzilla/Bug.pm @@ -140,7 +140,7 @@ sub initBug { reporter, bug_file_loc, short_desc, target_milestone, qa_contact, status_whiteboard, DATE_FORMAT(creation_ts,'%Y.%m.%d %H:%i'), - delta_ts, sum(votes.count), + delta_ts, sum(votes.vote_count), reporter_accessible, cclist_accessible, estimated_time, remaining_time from bugs left join votes using(bug_id), |