Diff for /loncom/auth/checkauthen.pm between versions 1.16 and 1.18

version 1.16, 2014/05/17 21:43:55 version 1.18, 2015/09/18 11:43:05
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 47  sub handler { Line 47  sub handler {
         if ($r->user() eq '') {          if ($r->user() eq '') {
             $r->user('public:public');              $r->user('public:public');
         }          }
           return OK;
       }
   
       if ($r->uri() =~ m{^/res/adm/pages/reactionresponse/[^/]+\.html$}) {
           if ($r->user() eq '') {
               $r->user('public:public');
           }
         return OK;          return OK;
     }      }
   

Removed from v.1.16  
changed lines
  Added in v.1.18


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