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) {
$displayfields{$_} = 1;
}
$template->process("bug/show.xml.tmpl", { user => { login => $exporter },
bugs => \@bugs,
$template->process("bug/show.xml.tmpl", { bugs => \@bugs,
displayfields => \%displayfields,
}, \$msg)
|| ThrowTemplateError($template->error());
......
......@@ -559,7 +559,7 @@ if (defined $::FORM{action}) {
$action = trim($::FORM{action});
}
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: $!";
PutFooter();
exit;
......
......@@ -26,7 +26,7 @@
urlbase="[% Param('urlbase') %]"
maintainer="[% Param('maintainer') FILTER xml %]"
[% IF user.id %]
exporter="[% user.login FILTER xml %]"
exporter="[% user.email FILTER xml %]"
[% 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