Diff for /loncom/auth/checkauthen.pm between versions 1.15 and 1.19

version 1.15, 2014/01/05 11:30:06 version 1.19, 2015/09/21 14:25:03
Line 1 Line 1
 # The LearningOnline Network  # The LearningOnline Network
 # checks for a cokkie to authenticate a user  # checks for a cookie to authenticate a user
 #  #
 # $Id$  # $Id$
 #  #
Line 38  sub handler { Line 38  sub handler {
   
     if ($r->uri() =~ m{^/res/adm/pages/[^/]+\.(gif|png)$}) {      if ($r->uri() =~ m{^/res/adm/pages/[^/]+\.(gif|png)$}) {
         if ($r->user() eq '') {          if ($r->user() eq '') {
             $r->user('public');              $r->user('public:public');
         }          }
         return OK;          return OK;
     }      }
   
     if (&Apache::lonnet::is_domainimage($r->uri)) {      if (&Apache::lonnet::is_domainimage($r->uri)) {
         if ($r->user() eq '') {          if ($r->user() eq '') {
             $r->user('public');              $r->user('public:public');
         }          }
         return OK;          return OK;
     }      }
Line 66  sub handler { Line 66  sub handler {
  && $env{'user.domain'} eq 'public') {   && $env{'user.domain'} eq 'public') {
  if ($env{'request.publicaccess'} ) {   if ($env{'request.publicaccess'} ) {
             if ($r->user() eq '') {              if ($r->user() eq '') {
                 $r->user('public');                  $r->user('public:public');
             }              }
     return OK;      return OK;
  } else {   } else {

Removed from v.1.15  
changed lines
  Added in v.1.19


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