--- loncom/homework/lonsimpleproblemedit.pm 2010/06/06 02:40:35 1.32 +++ loncom/homework/lonsimpleproblemedit.pm 2012/11/08 21:55:11 1.33 @@ -1,7 +1,7 @@ # The LearningOnline Network # Simple Problem Parameter Setting "Editor" # -# $Id: lonsimpleproblemedit.pm,v 1.32 2010/06/06 02:40:35 raeburn Exp $ +# $Id: lonsimpleproblemedit.pm,v 1.33 2012/11/08 21:55:11 raeburn Exp $ # # Copyright Michigan State University Board of Trustees # @@ -262,15 +262,8 @@ sub handler { $spell_header)); if ($symb) { my $title='

'.&Apache::lonnet::gettitle($symb).'

'; - my $displaylink = &get_parent_uri($symb); - if ($displaylink ne '') { - my $functions=&Apache::lonhtmlcommon::start_funclist() - .&Apache::lonhtmlcommon::add_item_funclist( - '' - .&mt('Student View').'') - .&Apache::lonhtmlcommon::end_funclist(); - $r->print(&Apache::loncommon::head_subbox($functions) - .$title); + if (&get_parent_uri($symb)) { + $r->print($title); } else { $r->print($title .'

' @@ -420,7 +413,7 @@ sub handler { } $r->print(&Apache::loncommon::end_page()); return OK; -} +} 1; __END__