Diff for /loncom/auth/lonacc.pm between versions 1.159.2.3 and 1.160

version 1.159.2.3, 2016/08/07 20:49:37 version 1.160, 2014/12/01 22:52:54
Line 109  sub cleanup { Line 109  sub cleanup {
     my ($r)=@_;      my ($r)=@_;
     if (! $r->is_initial_req()) { return DECLINED; }      if (! $r->is_initial_req()) { return DECLINED; }
     &Apache::lonnet::save_cache();      &Apache::lonnet::save_cache();
       &Apache::lontexconvert::jsMath_reset();
     return OK;      return OK;
 }  }
   
Line 289  sub sso_login { Line 290  sub sso_login {
  return undef;   return undef;
     }      }
   
     my ($user) = ($r->user =~ m/^($match_username)$/);      my ($user) = ($r->user =~ m/([a-zA-Z0-9_\-@.]*)/);
     if ($user eq '') {  
         return undef;  
     }  
   
     my $query = $r->args;      my $query = $r->args;
     my %form;      my %form;
Line 750  sub handler { Line 748  sub handler {
 # ------------------------------------ See if this is a viewable portfolio file  # ------------------------------------ See if this is a viewable portfolio file
     if (&Apache::lonnet::is_portfolio_url($requrl)) {      if (&Apache::lonnet::is_portfolio_url($requrl)) {
         my $clientip = $r->get_remote_host();          my $clientip = $r->get_remote_host();
  my $access=&Apache::lonnet::allowed('bre',$requrl,undef,undef,$clientip);          my $access=&Apache::lonnet::allowed('bre',$requrl,undef,undef,$clientip);
  if ($access eq 'A') {   if ($access eq 'A') {
     &Apache::restrictedaccess::setup_handler($r);      &Apache::restrictedaccess::setup_handler($r);
     return OK;      return OK;

Removed from v.1.159.2.3  
changed lines
  Added in v.1.160


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