--- loncom/lonnet/perl/lonnet.pm 2001/11/29 21:54:56 1.179 +++ loncom/lonnet/perl/lonnet.pm 2001/12/04 17:00:38 1.181 @@ -1,7 +1,7 @@ # The LearningOnline Network # TCP networking package # -# $Id: lonnet.pm,v 1.179 2001/11/29 21:54:56 www Exp $ +# $Id: lonnet.pm,v 1.181 2001/12/04 17:00:38 matthew Exp $ # # Copyright Michigan State University Board of Trustees # @@ -61,7 +61,7 @@ # 10/5,10/10,11/13,11/15 Scott Harrison # 11/17,11/20,11/22,11/29 Gerd Kortemeyer # -# $Id: lonnet.pm,v 1.179 2001/11/29 21:54:56 www Exp $ +# $Id: lonnet.pm,v 1.181 2001/12/04 17:00:38 matthew Exp $ # ### @@ -963,7 +963,7 @@ sub tmpreset { $path.'/tmpstore_'.$stuname.'_'.$domain.'_'.$namespace.'.db', &GDBM_WRCREAT,0640)) { foreach my $key (keys %hash) { - if ($key=~ /:$symb:/) { + if ($key=~ /:$symb/) { delete($hash{$key}); } } @@ -1712,14 +1712,14 @@ sub plaintext { # ------------------------------------------------------------------ Plain Text sub fileembstyle { - my $ending=shift; + my $ending=lc(shift); return $fe{$ending}; } # ------------------------------------------------------------ Description Text sub filedescription { - my $ending=shift; + my $ending=lc(shift); return $fd{$ending}; } @@ -2694,7 +2694,7 @@ BEGIN { chomp($configline); my ($ending,$emb,@descr)=split(/\s+/,$configline); if ($descr[0] ne '') { - $fe{$ending}=$emb; + $fe{$ending}=lc($emb); $fd{$ending}=join(' ',@descr); } }