diff options
author | lpsolit%gmail.com <> | 2008-04-03 00:42:25 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2008-04-03 00:42:25 +0200 |
commit | 43b7dc314234e476a80d9acbd07292d7286cca5a (patch) | |
tree | 87c77bfa7d65b7636447232feb77fe5db1d7d8d4 /process_bug.cgi | |
parent | 0e4b8f785d87afacbf432f6985a3d906b35bba21 (diff) | |
download | bugzilla-43b7dc314234e476a80d9acbd07292d7286cca5a.tar.gz bugzilla-43b7dc314234e476a80d9acbd07292d7286cca5a.tar.xz |
Bug 405946: Some emails are not sent in the language chosen by the addressee - Patch by Frédéric Buclin <LpSolit@gmail.com> r=wurblzap a=LpSolit
Diffstat (limited to 'process_bug.cgi')
-rwxr-xr-x | process_bug.cgi | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/process_bug.cgi b/process_bug.cgi index ffa06cee3..97cd3098d 100755 --- a/process_bug.cgi +++ b/process_bug.cgi @@ -560,9 +560,7 @@ foreach my $bug (@bug_objects) { # If some votes have been removed, RemoveVotes() returns # a list of messages to send to voters. # We delay the sending of these messages till tables are unlocked. - $msgs = RemoveVotes($bug->id, 0, - "This bug has been moved to a different product"); - + $msgs = RemoveVotes($bug->id, 0, 'votes_bug_moved'); CheckIfVotedConfirmed($bug->id, Bugzilla->user->id); } |