Diff for /loncom/interface/loncommon.pm between versions 1.405 and 1.406

version 1.405, 2006/06/28 20:15:37 version 1.406, 2006/06/28 23:38:10
Line 5179  sub course_type { Line 5179  sub course_type {
     }      }
 }  }
   
   sub group_term {
       my $crstype = &course_type();
       my %names = (
                     'Course' => 'group',
                     'Group' => 'team',
                   );
       return $names{$crstype};
   }
   
 sub icon {  sub icon {
     my ($file)=@_;      my ($file)=@_;
     my $curfext = (split(/\./,$file))[-1];      my $curfext = (split(/\./,$file))[-1];

Removed from v.1.405  
changed lines
  Added in v.1.406


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