Diff for /loncom/interface/loncommon.pm between versions 1.1075.2.109 and 1.1075.2.111

version 1.1075.2.109, 2016/08/14 00:24:29 version 1.1075.2.111, 2016/09/01 01:27:25
Line 4691  sub check_ip_acc { Line 4691  sub check_ip_acc {
         return 1;          return 1;
     }      }
     my $allowed=0;      my $allowed=0;
     my $ip=$env{'request.host'} || $ENV{'REMOTE_ADDR'} || $clientip;      my $ip=$ENV{'REMOTE_ADDR'} || $clientip || $env{'request.host'};
   
     my $name;      my $name;
     foreach my $pattern (split(',',$acc)) {      foreach my $pattern (split(',',$acc)) {
Line 14602  sub construct_course { Line 14602  sub construct_course {
        if ($args->{'setcontent'}) {         if ($args->{'setcontent'}) {
            $cenv{'question.email'}=$args->{'ccuname'}.':'.$args->{'ccdomain'};             $cenv{'question.email'}=$args->{'ccuname'}.':'.$args->{'ccdomain'};
        }         }
          if ($args->{'setcomment'}) {
              $cenv{'comment.email'}=$args->{'ccuname'}.':'.$args->{'ccdomain'};
          }
     }      }
     if ($args->{'reshome'}) {      if ($args->{'reshome'}) {
  $cenv{'reshome'}=$args->{'reshome'}.'/';   $cenv{'reshome'}=$args->{'reshome'}.'/';

Removed from v.1.1075.2.109  
changed lines
  Added in v.1.1075.2.111


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