summaryrefslogtreecommitdiffstats
path: root/CGI.pl
diff options
context:
space:
mode:
authorpreed%sigkill.com <>2003-02-10 07:04:08 +0100
committerpreed%sigkill.com <>2003-02-10 07:04:08 +0100
commit4a8e3d64a5af8ae7a82cdb7bbbc39afbf38184b4 (patch)
treea04456cea027c8f56eba8a6a433f34eb3b11a4fb /CGI.pl
parent731b5775ed45d22398a6c7969bd62922853c3b4e (diff)
downloadbugzilla-4a8e3d64a5af8ae7a82cdb7bbbc39afbf38184b4.tar.gz
bugzilla-4a8e3d64a5af8ae7a82cdb7bbbc39afbf38184b4.tar.xz
Bug 124174 - make processmail a package (Bugzilla::BugMail), r=gerv, r=jth, a=justdave
Diffstat (limited to 'CGI.pl')
-rw-r--r--CGI.pl5
1 files changed, 1 insertions, 4 deletions
diff --git a/CGI.pl b/CGI.pl
index 7ded11ef2..eb74862fa 100644
--- a/CGI.pl
+++ b/CGI.pl
@@ -755,10 +755,7 @@ sub CheckIfVotedConfirmed {
$vars->{'type'} = "votes";
$vars->{'id'} = $id;
- $vars->{'mail'} = "";
- open(PMAIL, "-|") or exec('./processmail', $id);
- $vars->{'mail'} .= $_ while <PMAIL>;
- close(PMAIL);
+ $vars->{'mailrecipients'} = { 'changer' => $who };
$template->process("bug/process/results.html.tmpl", $vars)
|| ThrowTemplateError($template->error());