--- loncom/homework/structuretags.pm 2009/03/27 01:07:10 1.441 +++ loncom/homework/structuretags.pm 2009/04/06 13:29:02 1.442 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # definition of tags that give a structure to a document # -# $Id: structuretags.pm,v 1.441 2009/03/27 01:07:10 raeburn Exp $ +# $Id: structuretags.pm,v 1.442 2009/04/06 13:29:02 bisitz Exp $ # # Copyright Michigan State University Board of Trustees # @@ -2034,9 +2034,16 @@ sub start_simpleeditbutton { my $url=$env{'request.noversionuri'}; $url=~s/\?.*$//; my ($symb) = &Apache::lonnet::whichuser(); - $result='
'. - ''.&mt('Edit').' - '.&mt('Note: it can take up to 10 minutes for changes to take effect for all users.'). -&Apache::loncommon::help_open_topic('Caching').'

'; +# Warning make more sense and is more important on edit screen +# $result='

' +# .&mt('Note: it can take up to 10 minutes for changes to take effect for all users.') +# .&Apache::loncommon::help_open_topic('Caching') +# .'

'; + $result.=&Apache::lontemplate::start_functionslist() + .&Apache::lontemplate::item_functionslist( + ''.&mt('Edit').'') + .&Apache::lontemplate::end_functionslist(); + } return $result; }