From c6f80310afc00cf7d5114e638cbaaefde3914da0 Mon Sep 17 00:00:00 2001 From: "terry%mozilla.org" <> Date: Fri, 8 Oct 1999 06:54:47 +0000 Subject: Added the ability for users to "vote" on which bugs they think should be fixed. --- processmail | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'processmail') diff --git a/processmail b/processmail index 04c064df3..58d53e51f 100755 --- a/processmail +++ b/processmail @@ -190,6 +190,10 @@ sub GetBugText { my @cclist; @cclist = split(/,/, ShowCcList($id)); + SendSQL("select profiles.login_name from votes, profiles where votes.bug_id = $id and profiles.userid = votes.who"); + while (MoreSQLData()) { + push(@cclist, FetchOneColumn()); + } $::bug{'cclist'} = \@cclist; -- cgit v1.2.3-24-g4f1b