--- loncom/interface/lonsimplepage.pm 2009/03/27 13:50:36 1.76 +++ loncom/interface/lonsimplepage.pm 2009/03/27 15:46:38 1.77 @@ -1,7 +1,7 @@ # The LearningOnline Network # Simple Page Editor # -# $Id: lonsimplepage.pm,v 1.76 2009/03/27 13:50:36 bisitz Exp $ +# $Id: lonsimplepage.pm,v 1.77 2009/03/27 15:46:38 bisitz Exp $ # # Copyright Michigan State University Board of Trustees # @@ -262,25 +262,28 @@ if($target ne 'tex'){ #---Print Function if ($target ne 'tex') { if($allowed || $privileged){ - &Apache::lontemplate::start_functionslist($r); + $r->print(&Apache::lontemplate::start_functionslist()); if($allowed){ - &Apache::lontemplate::item_functionslist($r,''.&mt('Show Student View').''.&Apache::loncommon::help_open_topic('Uploaded_Templates_PublicView')); + $r->print(&Apache::lontemplate::item_functionslist( + ''.&mt('Show Student View').'' + .&Apache::loncommon::help_open_topic('Uploaded_Templates_PublicView'))); }elsif($privileged){ my $edittext = &mt('Edit'); if ($group ne '') { $edittext = &mt('Edit Group Homepage'); } - &Apache::lontemplate::item_functionslist($r,''.$edittext.''); + $r->print(&Apache::lontemplate::item_functionslist( + ''.$edittext.'')); if ($group ne '') { if ($group_edit_perm) { - &Apache::lontemplate::item_functionslist($r,'   '. - ''. - &mt('Edit Group Settings').''); + $r->print(&Apache::lontemplate::item_functionslist( + '' + .&mt('Edit Group Settings').'')); } - } + } } - &Apache::lontemplate::end_functionslist($r); + $r->print(&Apache::lontemplate::end_functionslist()); } }