--- loncom/interface/lonhtmlcommon.pm 2004/08/05 16:59:29 1.86 +++ loncom/interface/lonhtmlcommon.pm 2004/08/17 19:02:57 1.87 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # a pile of common html routines # -# $Id: lonhtmlcommon.pm,v 1.86 2004/08/05 16:59:29 albertel Exp $ +# $Id: lonhtmlcommon.pm,v 1.87 2004/08/17 19:02:57 albertel Exp $ # # Copyright Michigan State University Board of Trustees # @@ -1034,8 +1034,8 @@ returns: nothing my @Crumbs; sub breadcrumbs { - my ($color,$component,$component_help,$function,$domain,$menulink) = - @_; + my ($color,$component,$component_help,$function,$domain,$menulink, + $helplink) = @_; if (! defined($color)) { if (! defined($function)) { $function = &Apache::loncommon::get_users_function(); @@ -1097,7 +1097,9 @@ returns: nothing # if ($bug ne '') { # $icons .= &Apache::loncommon::help_open_bug($bug); # } - $icons .= &Apache::loncommon::help_open_menu($color,$component,$component_help,$function,$faq,$bug); + if ($helplink ne 'nohelp') { + $icons .= &Apache::loncommon::help_open_menu($color,$component,$component_help,$function,$faq,$bug); + } if ($icons ne '') { $Str .= $icons.' '; }