--- loncom/auth/lonauth.pm 2005/06/07 02:14:28 1.67 +++ loncom/auth/lonauth.pm 2005/07/05 21:30:14 1.68 @@ -1,7 +1,7 @@ # The LearningOnline Network # User Authentication Module # -# $Id: lonauth.pm,v 1.67 2005/06/07 02:14:28 www Exp $ +# $Id: lonauth.pm,v 1.68 2005/07/05 21:30:14 albertel Exp $ # # Copyright Michigan State University Board of Trustees # @@ -138,6 +138,9 @@ sub success { print $idf "request.role=cm\n"; print $idf "request.role.adv=$env{'user.adv'}\n"; print $idf "request.host=$ENV{'REMOTE_ADDR'}\n"; + if ($username eq 'public' && $domain eq 'public') { + print $idf "environment.remote=off\n"; + } if ($FORM{'interface'}) { $FORM{'interface'}=~s/\W//gs; print $idf "browser.interface=$FORM{'interface'}\n"; @@ -172,6 +175,9 @@ sub success { # ------------------------------------------------------------ Get cookie ready + if ($username eq 'public' && $domain eq 'public') { + return $cookie; + } $cookie="lonID=$cookie; path=/"; # -------------------------------------------------------- Menu script and info my $windowinfo=&Apache::lonmenu::open($clientos);