Diff for /loncom/interface/loncommon.pm between versions 1.901 and 1.902

version 1.901, 2009/10/22 13:41:41 version 1.902, 2009/10/24 03:24:13
Line 10244  sub group_term { Line 10244  sub group_term {
     return $names{$crstype};      return $names{$crstype};
 }  }
   
   sub course_types {
       my @types = ('official','unofficial','community');
       my %typename = (
                            official   => 'Official course',
                            unofficial => 'Unofficial course',
                            community  => 'Community',
                      );
       return (\@types,\%typename);
   }
   
 sub icon {  sub icon {
     my ($file)=@_;      my ($file)=@_;
     my $curfext = lc((split(/\./,$file))[-1]);      my $curfext = lc((split(/\./,$file))[-1]);

Removed from v.1.901  
changed lines
  Added in v.1.902


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