fix logic for restricting who can move bugs

This commit is contained in:
endico%mozilla.org 2000-06-13 16:49:15 +00:00
Родитель e49a575f71
Коммит 3334a6a12f
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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";