diff options
author | justdave%syndicomm.com <> | 2003-01-24 09:27:28 +0100 |
---|---|---|
committer | justdave%syndicomm.com <> | 2003-01-24 09:27:28 +0100 |
commit | 8f0598f469c102588e082ea88f8fc33f660d6b1d (patch) | |
tree | 39a66d22f76f64c26fba0ae526730aca8cbdf619 /Bugzilla | |
parent | b996f2f722e069d479b6f948c4a7e271beab166a (diff) | |
download | bugzilla-8f0598f469c102588e082ea88f8fc33f660d6b1d.tar.gz bugzilla-8f0598f469c102588e082ea88f8fc33f660d6b1d.tar.xz |
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
Diffstat (limited to 'Bugzilla')
-rwxr-xr-x | Bugzilla/Bug.pm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Bugzilla/Bug.pm b/Bugzilla/Bug.pm index 35f8402ef..dd91d6f3f 100755 --- a/Bugzilla/Bug.pm +++ b/Bugzilla/Bug.pm @@ -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/); |