From 8f0598f469c102588e082ea88f8fc33f660d6b1d Mon Sep 17 00:00:00 2001 From: "justdave%syndicomm.com" <> Date: Fri, 24 Jan 2003 08:27:28 +0000 Subject: 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 --- Bugzilla/Bug.pm | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Bugzilla') 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/); -- cgit v1.2.3-24-g4f1b