Diff for /loncom/auth/lonlogout.pm between versions 1.45.2.6 and 1.45.2.7

version 1.45.2.6, 2019/08/01 14:30:27 version 1.45.2.7, 2019/08/03 22:52:25
Line 71  sub handler { Line 71  sub handler {
     my @profile;      my @profile;
     my $lonidsdir=$r->dir_config('lonIDsDir');      my $lonidsdir=$r->dir_config('lonIDsDir');
     &Apache::lonnet::transfer_profile_to_env($lonidsdir,$handle);      &Apache::lonnet::transfer_profile_to_env($lonidsdir,$handle);
     unlink("$lonidsdir/$handle.id");      if (unlink("$lonidsdir/$handle.id")) {
           if (($env{'user.linkedenv'} =~ /^[a-f0-9]+_linked$/) &&
               (-l "$lonidsdir/$env{'user.linkedenv'}.id") &&
               (readlink("$lonidsdir/$env{'user.linkedenv'}.id") eq "$lonidsdir/$handle.id")) {
               unlink("$lonidsdir/$env{'user.linkedenv'}.id");
           }
       }
     if (!$Apache::lonlocal::lh) {      if (!$Apache::lonlocal::lh) {
         &Apache::lonlocal::get_language_handle($r);          &Apache::lonlocal::get_language_handle($r);
     }      }
Line 84  sub handler { Line 90  sub handler {
   
     &Apache::loncommon::content_type($r,'text/html');      &Apache::loncommon::content_type($r,'text/html');
   
     #expire the cookie      #expire the cookies
     my $c = new CGI::Cookie(-name    => 'lonID',      my %cookies=CGI::Cookie->parse($r->header_in('Cookie'));
     -value   => '',      foreach my $name (keys(%cookies)) {
     -expires => '-10y',);          next unless ($name =~ /^lon(|S|Link|Pub)ID$/);
     $r->header_out('Set-cookie' => $c);          my $c = new CGI::Cookie(-name    => $name,
                                   -value   => '',
                                   -expires => '-10y',);
           $r->headers_out->add('Set-cookie' => $c);
       }
     $r->send_http_header;      $r->send_http_header;
     return OK if $r->header_only;      return OK if $r->header_only;
 # -------------------------------------------------------- Menu script and info  # -------------------------------------------------------- Menu script and info

Removed from v.1.45.2.6  
changed lines
  Added in v.1.45.2.7


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