--- loncom/interface/loncreateuser.pm 2008/01/20 22:25:05 1.233 +++ loncom/interface/loncreateuser.pm 2008/01/21 01:45:04 1.234 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # Create a user # -# $Id: loncreateuser.pm,v 1.233 2008/01/20 22:25:05 raeburn Exp $ +# $Id: loncreateuser.pm,v 1.234 2008/01/21 01:45:04 raeburn Exp $ # # Copyright Michigan State University Board of Trustees # @@ -3091,6 +3091,10 @@ sub print_main_menu { foreach my $menu_item (@menu) { next if (! $menu_item->{'permission'}); $menu_html.='

'; + if (exists($menu_item->{'help'})) { + $menu_html.= + &Apache::loncommon::help_open_topic($menu_item->{'help'}); + } $menu_html.=''; if (exists($menu_item->{'url'})) { $menu_html.=qq{}; @@ -3099,10 +3103,6 @@ sub print_main_menu { qq{}; } $menu_html.= &mt($menu_item->{'text'}).''; - if (exists($menu_item->{'help'})) { - $menu_html.= - &Apache::loncommon::help_open_topic($menu_item->{'help'}); - } $menu_html.='

'; } return $menu_html;