diff options
author | justdave%syndicomm.com <> | 2003-09-02 13:54:58 +0000 |
---|---|---|
committer | justdave%syndicomm.com <> | 2003-09-02 13:54:58 +0000 |
commit | 4015bef325a73631bd244b4e0905f9f450145aae (patch) | |
tree | 9d875fc3b7bc3b879960a4a58209983b23eb98a1 /Bugzilla | |
parent | e941bb43e05a8560f5412299216f0d3846511cb0 (diff) | |
download | bugs-4015bef325a73631bd244b4e0905f9f450145aae.tar bugs-4015bef325a73631bd244b4e0905f9f450145aae.tar.gz bugs-4015bef325a73631bd244b4e0905f9f450145aae.tar.bz2 bugs-4015bef325a73631bd244b4e0905f9f450145aae.tar.xz bugs-4015bef325a73631bd244b4e0905f9f450145aae.zip |
Bug 217422: "0" was missing in "votes: 0" (MySQL 4 compatibility)
r= bbaetz, 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 750fd8186..94bd628e2 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.vote_count), + delta_ts, ifnull(sum(votes.vote_count),0), reporter_accessible, cclist_accessible, estimated_time, remaining_time from bugs left join votes using(bug_id), |