diff options
author | lpsolit%gmail.com <> | 2005-08-23 21:17:16 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2005-08-23 21:17:16 +0200 |
commit | c48c345eb62acb75a46db84f5d6ab53d164d01ef (patch) | |
tree | ce3b13167cb1647aa23d15535678338d37ae795c /Bugzilla | |
parent | ec1a877642aca183d748e88a08a63f4568e3d357 (diff) | |
download | bugzilla-c48c345eb62acb75a46db84f5d6ab53d164d01ef.tar.gz bugzilla-c48c345eb62acb75a46db84f5d6ab53d164d01ef.tar.xz |
Bug 303366: Possible locking tables conflict when voting for bugs - Patch by Frédéric Buclin <LpSolit@gmail.com> r=wurblzap a=justdave
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; |