Diff for /loncom/auth/checkauthen.pm between versions 1.1 and 1.7

version 1.1, 2005/11/29 21:02:50 version 1.7, 2006/09/07 17:07:26
Line 36  use Apache::lonnet; Line 36  use Apache::lonnet;
 sub handler {  sub handler {
     my ($r) = @_;      my ($r) = @_;
   
       if ($r->auth_type() ne 'LONCAPA') {
    return DECLINED;
       }
     my $fail = FORBIDDEN;       my $fail = FORBIDDEN; 
     if ($r->dir_config('lonOtherAuthen') eq 'yes') {      if ($r->dir_config('lonOtherAuthen') eq 'yes') {
  &Apache::lonnet::logthis("other authen");   if (defined($r->dir_config('lonOtherAuthenType'))) {
               $r->auth_type($r->dir_config('lonOtherAuthenType'));
           }
    #&Apache::lonnet::logthis("other authen");
  $fail = DECLINED;   $fail = DECLINED;
     }      }
   
Line 62  sub handler { Line 68  sub handler {
     return OK;      return OK;
  }   }
     }      }
   
     return $fail;      return $fail;
 }  }
   

Removed from v.1.1  
changed lines
  Added in v.1.7


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>