Bug 346660 - [p=justdave r=myk]

This commit is contained in:
reed%reedloden.com 2006-12-04 07:08:00 +00:00
Родитель a9759ca1ea
Коммит a8c3cca579
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -1257,7 +1257,9 @@ sub EmailToId {
my $EnableDeleteUser = 1;
for ( defined $F::command ? $F::command : 'MainMenu')
{
/^FindPartition$/ || do { Authenticate(); };
# Only allow anonymous users access to the view parameter
# of FindPartition() (bug 346660)
(/^FindPartition$/ && param("view")) || do { Authenticate(); };
param("command", "");
/^AddPartition$/ && do { AddPartition(); last; };
/^AddUser$/ && do { AddUser(); last; };