--- loncom/interface/lontemplate.pm 2009/02/19 17:32:39 1.17 +++ loncom/interface/lontemplate.pm 2009/02/20 15:09:28 1.18 @@ -1,7 +1,7 @@ # The LearningOnline Network # "Template" Functions to generate html output # -# $Id: lontemplate.pm,v 1.17 2009/02/19 17:32:39 neumanie Exp $ +# $Id: lontemplate.pm,v 1.18 2009/02/20 15:09:28 amueller Exp $ # # Copyright Michigan State University Board of Trustees # @@ -126,7 +126,8 @@ sub print_template my ($r,$topic,$content, $allowed,$boxclass) = @_; $r->print('
'); $r->print('

'.$topic.'

'); - $r->print('
'.$content.'
'); +# $r->print('
'.$content.'
'); + $r->print('

' .$content . '

'); $r->print('
'); } @@ -142,12 +143,13 @@ sub print_start_page_functions { my($r)=@_; #TODO add translation for Functions - $r->print('
Functions'); + $r->print('
'. &mt('Functions') . ''); } sub print_functions_content { my($r,$content) = @_; $r->print($content.'      '); + } sub print_end_page_functions {