From: endico%mozilla.org <> Date: Tue, 13 Jun 2000 23:49:15 +0000 (+0000) Subject: fix logic for restricting who can move bugs X-Git-Tag: bugzilla-2.12~271 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=67e8c71f57d926588d2e142a0edbce46c3413d74;p=thirdparty%2Fbugzilla.git fix logic for restricting who can move bugs --- diff --git a/move.cgi b/move.cgi index 4f75559f13..f588df68d7 100755 --- a/move.cgi +++ b/move.cgi @@ -73,7 +73,7 @@ if ( !defined $::FORM{'buglist'} ) { confirm_login(); my $exporter = $::COOKIE{"Bugzilla_login"}; -if (! $exporter =~ /(lchaing\@netscape.com|leger\@netscape.com|endico\@mozilla.org|dmose\@mozilla.org)/) { +unless ($exporter =~ /(lchaing\@netscape.com|leger\@netscape.com|endico\@mozilla.org|dmose\@mozilla.org)/) { print "Content-type: text/html\n\n"; PutHeader("Move Bugs"); print "

You do not have permission to move bugs

\n";