Diff for /loncom/lonnet/perl/lonnet.pm between versions 1.1140 and 1.1141

version 1.1140, 2011/10/24 12:05:58 version 1.1141, 2011/10/31 13:44:37
Line 5910  sub allowed { Line 5910  sub allowed {
         }          }
     }      }
   
   # User who is not author or co-author might still be able to edit
   # resource of an author in the domain (e.g., if Domain Coordinator).
       if (($priv eq 'eco') && ($thisallowed eq '') && ($env{'request.course.id'}) &&
           (&allowed('mdc',$env{'request.course.id'}))) {
           if ($env{"user.priv.cm./$uri/"}=~/\Q$priv\E\&([^\:]*)/) {
               $thisallowed.=$1;
           }
       }
   
 # Course: uri itself is a course  # Course: uri itself is a course
     my $courseuri=$uri;      my $courseuri=$uri;
     $courseuri=~s/\_(\d)/\/$1/;      $courseuri=~s/\_(\d)/\/$1/;

Removed from v.1.1140  
changed lines
  Added in v.1.1141


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