Commit c66a2075 authored by jocuri%softhome.net's avatar jocuri%softhome.net

Patch for bug 258711: move.pl should honour emailsuffix; patch by Marc Schumann…

Patch for bug 258711: move.pl should honour emailsuffix; patch by Marc Schumann <wurblzap@gmail.com>, r=justdave, a=justdave.
parent 0c57e438
...@@ -161,8 +161,7 @@ foreach (@fieldlist) { ...@@ -161,8 +161,7 @@ foreach (@fieldlist) {
$displayfields{$_} = 1; $displayfields{$_} = 1;
} }
$template->process("bug/show.xml.tmpl", { user => { login => $exporter }, $template->process("bug/show.xml.tmpl", { bugs => \@bugs,
bugs => \@bugs,
displayfields => \%displayfields, displayfields => \%displayfields,
}, \$msg) }, \$msg)
|| ThrowTemplateError($template->error()); || ThrowTemplateError($template->error());
......
...@@ -559,7 +559,7 @@ if (defined $::FORM{action}) { ...@@ -559,7 +559,7 @@ if (defined $::FORM{action}) {
$action = trim($::FORM{action}); $action = trim($::FORM{action});
} }
if (Param("move-enabled") && $action eq Param("move-button-text")) { if (Param("move-enabled") && $action eq Param("move-button-text")) {
$::FORM{'buglist'} = join (":", @idlist); $cgi->param('buglist', join (":", @idlist));
do "move.pl" || die "Error executing move.cgi: $!"; do "move.pl" || die "Error executing move.cgi: $!";
PutFooter(); PutFooter();
exit; exit;
......
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
urlbase="[% Param('urlbase') %]" urlbase="[% Param('urlbase') %]"
maintainer="[% Param('maintainer') FILTER xml %]" maintainer="[% Param('maintainer') FILTER xml %]"
[% IF user.id %] [% IF user.id %]
exporter="[% user.login FILTER xml %]" exporter="[% user.email FILTER xml %]"
[% END %] [% END %]
> >
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment