--- loncom/interface/lonsimplepage.pm 2009/03/08 21:49:33 1.75 +++ loncom/interface/lonsimplepage.pm 2009/03/27 13:50:36 1.76 @@ -1,7 +1,7 @@ # The LearningOnline Network # Simple Page Editor # -# $Id: lonsimplepage.pm,v 1.75 2009/03/08 21:49:33 weissno Exp $ +# $Id: lonsimplepage.pm,v 1.76 2009/03/27 13:50:36 bisitz Exp $ # # Copyright Michigan State University Board of Trustees # @@ -262,25 +262,25 @@ if($target ne 'tex'){ #---Print Function if ($target ne 'tex') { if($allowed || $privileged){ - &Apache::lontemplate::print_start_page_functions($r); + &Apache::lontemplate::start_functionslist($r); if($allowed){ - &Apache::lontemplate::print_functions_content($r,''.&mt('Show Student View').''.&Apache::loncommon::help_open_topic('Uploaded_Templates_PublicView')); + &Apache::lontemplate::item_functionslist($r,''.&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::print_functions_content($r,''.$edittext.''); + &Apache::lontemplate::item_functionslist($r,''.$edittext.''); if ($group ne '') { if ($group_edit_perm) { - &Apache::lontemplate::print_functions_content($r,'   '. + &Apache::lontemplate::item_functionslist($r,'   '. ''. &mt('Edit Group Settings').''); } } } - &Apache::lontemplate::print_end_page_functions($r); + &Apache::lontemplate::end_functionslist($r); } }