--- loncom/interface/lontemplate.pm 2009/05/30 21:52:30 1.35 +++ loncom/interface/lontemplate.pm 2009/06/11 16:48:33 1.37 @@ -1,7 +1,7 @@ # The LearningOnline Network # "Template" Functions to generate html output # -# $Id: lontemplate.pm,v 1.35 2009/05/30 21:52:30 bisitz Exp $ +# $Id: lontemplate.pm,v 1.37 2009/06/11 16:48:33 bisitz Exp $ # # Copyright Michigan State University Board of Trustees # @@ -76,9 +76,9 @@ sub print_aboutme_content_template { if($field eq 'aaa_contactinfo') { $r->print('
 
'); - &print_template($r,$syllabusfields{$field},$message,$allowed,'LC_ContentBoxSpecial'); + &print_template($r,$syllabusfields{$field},$message,$allowed,'LC_Box'); } else { - &print_template($r,$syllabusfields{$field},$message,$allowed,'LC_ContentBoxSpecial'); + &print_template($r,$syllabusfields{$field},$message,$allowed,'LC_Box'); } } else { @@ -131,23 +131,4 @@ sub print_editbox_template { &mt('Save All').'" />'); } -# Functionslist: List of functions -# Typically used to display a list of available functions at top of page -sub start_functionslist { - my($legendtext)=@_; - $legendtext=&mt('Functions') if !$legendtext; - return '
'.$legendtext.'' - .'
'; -} - 1;