Diff for /loncom/interface/loncommon.pm between versions 1.692.4.19 and 1.692.4.20

version 1.692.4.19, 2009/10/12 18:28:12 version 1.692.4.20, 2009/10/24 03:32:49
Line 9711  sub group_term { Line 9711  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.692.4.19  
changed lines
  Added in v.1.692.4.20


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