--- loncom/publisher/lonpublisher.pm 2003/12/28 20:12:59 1.156 +++ loncom/publisher/lonpublisher.pm 2003/12/29 19:13:23 1.157 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # Publication Handler # -# $Id: lonpublisher.pm,v 1.156 2003/12/28 20:12:59 www Exp $ +# $Id: lonpublisher.pm,v 1.157 2003/12/29 19:13:23 www Exp $ # # Copyright Michigan State University Board of Trustees # @@ -317,8 +317,7 @@ sub textfield { $value=~s/\s+$//gs; $value=~s/\s+/ /gs; $title=&mt($title); - my $uctitle=uc($title); - return "\n

$uctitle:". + return "\n

$title:". "


". ''; } @@ -331,9 +330,8 @@ sub hiddenfield { sub selectbox { my ($title,$name,$value,$functionref,@idlist)=@_; $title=&mt($title); - my $uctitle=uc($title); $value=(split(/\s*,\s*/,$value))[-1]; - my $selout="\n

$uctitle:". + my $selout="\n

$title:". '


'; @@ -1173,11 +1171,11 @@ END $scrout.= "\n

". - uc(&mt('Lowest Grade Level:')). + &mt('Lowest Grade Level').':'. "


". &Apache::loncommon::select_level_form($metadatafields{'lowestgradelevel'},'lowestgradelevel'). "\n

". - uc(&mt('Highest Grade Level:')). + &mt('Highest Grade Level').':'. "


". &Apache::loncommon::select_level_form($metadatafields{'highestgradelevel'},'highestgradelevel'). &textfield('Standards','standards',$metadatafields{'standards'});