]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
fix logic for restricting who can move bugs
authorendico%mozilla.org <>
Tue, 13 Jun 2000 23:49:15 +0000 (23:49 +0000)
committerendico%mozilla.org <>
Tue, 13 Jun 2000 23:49:15 +0000 (23:49 +0000)
move.cgi

index 4f75559f13780744f58f356c659fd20eacabd227..f588df68d78752905d71dd73a0e9c5e5278c87dc 100755 (executable)
--- 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 "<P>You do not have permission to move bugs<P>\n";