Correction href

This commit is contained in:
Michael RICOIS 2009-11-12 10:18:38 +00:00
parent 41a462aae7
commit a253ee0192

View File

@ -151,7 +151,7 @@ function menu()
}
if($href!==false)
{
$html.= '<a href='.$href.'>';
$html.= '<a href="'.$href.'">';
if($href=='#'){ $html.= '<font color="gray">'.$children['data'].'</font>'; }
else{ $html.= $children['data']; }
$html.= '</a>';
@ -191,7 +191,7 @@ function menu2()
}
if($href!==false)
{
$html.= '<li><a href='.$href.'>';
$html.= '<li><a href="'.$href.'">';
if($href=='#'){ $html.= '<font color="gray">'.$children['data'].'</font>'; }
else{ $html.= $children['data']; }
$html.= '</a></li>';