--- loncom/auth/lonauth.pm 2010/09/23 23:47:33 1.110 +++ loncom/auth/lonauth.pm 2011/02/24 23:37:50 1.111 @@ -1,7 +1,7 @@ # The LearningOnline Network # User Authentication Module # -# $Id: lonauth.pm,v 1.110 2010/09/23 23:47:33 raeburn Exp $ +# $Id: lonauth.pm,v 1.111 2011/02/24 23:37:50 raeburn Exp $ # # Copyright Michigan State University Board of Trustees # @@ -82,9 +82,13 @@ sub success { my $now=time; my $then=$env{'user.login.time'}; my $refresh=$env{'user.refresh.time'}; + my $update=$env{'user.update.time'}; + if (!$update) { + $update = $then; + } if (exists($env{$envkey})) { my ($role,$where,$trolecode,$tstart,$tend,$tremark,$tstatus); - &Apache::lonnet::role_status($envkey,$then,$refresh,$now,\$role,\$where, + &Apache::lonnet::role_status($envkey,$update,$refresh,$now,\$role,\$where, \$trolecode,\$tstatus,\$tstart,\$tend); if ($tstatus eq 'is') { $destination .= ($destination =~ /\?/) ? '&' : '?'; @@ -111,6 +115,10 @@ sub success { $destination .= '&destinationurl='.$destsymb; } } + if ($destination =~ m{^/adm/roles}) { + $destination .= ($destination =~ /\?/) ? '&' : '?'; + $destination .= 'source=login'; + } my $windowinfo = Apache::lonhtmlcommon::scripttag('self.name="loncapaclient";'); my $header = '';