--- loncom/auth/checkauthen.pm 2014/01/05 11:30:06 1.15 +++ loncom/auth/checkauthen.pm 2014/05/17 21:43:55 1.16 @@ -1,7 +1,7 @@ # The LearningOnline Network # checks for a cokkie to authenticate a user # -# $Id: checkauthen.pm,v 1.15 2014/01/05 11:30:06 raeburn Exp $ +# $Id: checkauthen.pm,v 1.16 2014/05/17 21:43:55 raeburn Exp $ # # Copyright Michigan State University Board of Trustees # @@ -38,14 +38,14 @@ sub handler { if ($r->uri() =~ m{^/res/adm/pages/[^/]+\.(gif|png)$}) { if ($r->user() eq '') { - $r->user('public'); + $r->user('public:public'); } return OK; } if (&Apache::lonnet::is_domainimage($r->uri)) { if ($r->user() eq '') { - $r->user('public'); + $r->user('public:public'); } return OK; } @@ -66,7 +66,7 @@ sub handler { && $env{'user.domain'} eq 'public') { if ($env{'request.publicaccess'} ) { if ($r->user() eq '') { - $r->user('public'); + $r->user('public:public'); } return OK; } else {