[LON-CAPA-cvs] cvs: loncom /interface lonmenu.pm

droeschl droeschl@source.lon-capa.org
Tue, 06 Oct 2009 14:06:13 -0000


droeschl		Tue Oct  6 14:06:13 2009 EDT

  Modified files:              
    /loncom/interface	lonmenu.pm 
  Log:
  Added missing <li> tag for helplink.
  
  
Index: loncom/interface/lonmenu.pm
diff -u loncom/interface/lonmenu.pm:1.283 loncom/interface/lonmenu.pm:1.284
--- loncom/interface/lonmenu.pm:1.283	Sun Oct  4 17:47:21 2009
+++ loncom/interface/lonmenu.pm	Tue Oct  6 14:06:12 2009
@@ -1,7 +1,7 @@
 # The LearningOnline Network with CAPA
 # Routines to control the menu
 #
-# $Id: lonmenu.pm,v 1.283 2009/10/04 17:47:21 droeschl Exp $
+# $Id: lonmenu.pm,v 1.284 2009/10/06 14:06:12 droeschl Exp $
 #
 # Copyright Michigan State University Board of Trustees
 #
@@ -187,7 +187,7 @@
 
 
         if ($$menuitem[3] eq 'Help') { # special treatment for helplink
-            $menu .= Apache::loncommon::top_nav_help('Help');
+            $menu .= '<li>'.Apache::loncommon::top_nav_help('Help').'</li>';
         } else {
             $menu .= prep_menuitem(\@$menuitem);
         }