diff options
Diffstat (limited to 'Bugzilla')
-rwxr-xr-x | Bugzilla/Bug.pm | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/Bugzilla/Bug.pm b/Bugzilla/Bug.pm index ec1927355..c287d0c0c 100755 --- a/Bugzilla/Bug.pm +++ b/Bugzilla/Bug.pm @@ -1128,15 +1128,6 @@ sub CheckIfVotedConfirmed { "*** This bug has been confirmed by popular vote. ***", 0, $timestamp); - my $template = Bugzilla->template; - my $vars = $::vars; - - $vars->{'type'} = "votes"; - $vars->{'id'} = $id; - $vars->{'mailrecipients'} = { 'changer' => $who }; - - $template->process("bug/process/results.html.tmpl", $vars) - || ThrowTemplateError($template->error()); $ret = 1; } return $ret; |