Diff for /loncom/interface/loncommon.pm between versions 1.1387 and 1.1388

version 1.1387, 2022/09/08 01:41:13 version 1.1388, 2022/09/13 12:22:14
Line 8881  Inputs: $title - optional title for the Line 8881  Inputs: $title - optional title for the
                                       window (side effect of setting                                        window (side effect of setting
                                       $env{'internal.head.to_opener'} to                                        $env{'internal.head.to_opener'} to
                                       1, if true.                                        1, if true.
                                      5- whether encrypt check should be skipped
             domain         -> force to color decorate a page for a specific              domain         -> force to color decorate a page for a specific
                                domain                                 domain
             function       -> force usage of a specific rolish color scheme              function       -> force usage of a specific rolish color scheme
Line 8943  sub headtag { Line 8944  sub headtag {
         }          }
     }      }
     if (ref($args->{'redirect'})) {      if (ref($args->{'redirect'})) {
  my ($time,$url,$inhibit_continue,$to_opener) = @{$args->{'redirect'}};   my ($time,$url,$inhibit_continue,$to_opener,$skip_enc_check) = @{$args->{'redirect'}};
  $url = &Apache::lonenc::check_encrypt($url);          if (!$skip_enc_check) {
               $url = &Apache::lonenc::check_encrypt($url);
           }
  if (!$inhibit_continue) {   if (!$inhibit_continue) {
     $env{'internal.head.redirect'} = $url;      $env{'internal.head.redirect'} = $url;
  }   }

Removed from v.1.1387  
changed lines
  Added in v.1.1388


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