Bug 106918: the "movers" param was not being interpreted correctly by move.pl or the show_bug template. Also the exporter value was not properly fed into the xml template.

r= myk, a= justdave


git-svn-id: svn://10.0.0.236/trunk@136914 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
justdave%syndicomm.com
2003-01-24 00:27:28 +00:00
parent 1bf8a67338
commit 03a483b3ae
3 changed files with 6 additions and 2 deletions

View File

@@ -362,6 +362,8 @@ sub user {
$self->{'user'} = {};
my $movers = Param("movers");
$movers =~ s/\s?,\s?/|/g;
$movers =~ s/@/\@/g;
$self->{'user'}->{'canmove'} = Param("move-enabled")
&& (defined $::COOKIE{"Bugzilla_login"})
&& ($::COOKIE{"Bugzilla_login"} =~ /$movers/);