Commit 67e8c71f authored by endico%mozilla.org's avatar endico%mozilla.org

fix logic for restricting who can move bugs

parent c5665cfc
...@@ -73,7 +73,7 @@ if ( !defined $::FORM{'buglist'} ) { ...@@ -73,7 +73,7 @@ if ( !defined $::FORM{'buglist'} ) {
confirm_login(); confirm_login();
my $exporter = $::COOKIE{"Bugzilla_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"; print "Content-type: text/html\n\n";
PutHeader("Move Bugs"); PutHeader("Move Bugs");
print "<P>You do not have permission to move bugs<P>\n"; print "<P>You do not have permission to move bugs<P>\n";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment