Diff for /loncom/interface/loncommon.pm between versions 1.384 and 1.388

version 1.384, 2006/06/22 13:02:22 version 1.388, 2006/06/22 19:11:13
Line 3315  table.LC_mail_list tr.LC_mail_other { Line 3315  table.LC_mail_list tr.LC_mail_other {
 table.LC_mail_list tr.LC_mail_other:hover {  table.LC_mail_list tr.LC_mail_other:hover {
   background-color: $mail_other_hover;    background-color: $mail_other_hover;
 }  }
   
   table#LC_portfolio_actions {
     width: auto;
     background: $pgbg;
     border: 0px;
     border-spacing: 2px 2px;
     padding: 0px;
     margin: 0px;
     border-collapse: separate;
   }
   table#LC_portfolio_actions td.LC_label {
     background: $tabbg;
     text-align: right;
   }
   table#LC_portfolio_actions td.LC_value {
     background: $tabbg;
   }
   
   table.LC_brower {
   }
   table.LC_browser tr.LC_browser_file {
     background: #CCFF88
   }
   table.LC_browser tr.LC_browser_file_locked {
     background: #FFAA99
   }
   table.LC_browser tr.LC_browser_folder {
     background: #CCCCFF
   }
   span.LC_current_location {
     font-size: x-large;
     background: $pgbg;
   }
   
 END  END
 }  }
   
Line 3999  sub get_secgrprole_info { Line 4033  sub get_secgrprole_info {
                   };                    };
     if ($needroles) {      if ($needroles) {
         $rolehash = {'all' => 'all'};          $rolehash = {'all' => 'all'};
         my %dumphash = &Apache::lonnet::dump('nohist_userroles',$cdom,$cnum);          my %user_roles = &Apache::lonnet::dump('nohist_userroles',$cdom,$cnum);
         foreach my $item (keys(%dumphash)) {   if (&Apache::lonnet::error(%user_roles)) {
       undef(%user_roles);
    }
           foreach my $item (keys(%user_roles)) {
             my ($role)=split(/\:/,$item,2);              my ($role)=split(/\:/,$item,2);
             if ($role eq 'cr') { next; }              if ($role eq 'cr') { next; }
             if ($role =~ /^cr/) {              if ($role =~ /^cr/) {

Removed from v.1.384  
changed lines
  Added in v.1.388


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