diff options
Diffstat (limited to 'processmail')
-rwxr-xr-x | processmail | 4 |
1 files changed, 4 insertions, 0 deletions
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; |