fix [ 1249114 ] unclosed <li> elements in auth modules

This commit is contained in:
Martin Kamerbeek 2005-08-12 13:22:54 +00:00
parent fea1002aca
commit 52670adb9f
9 changed files with 30 additions and 28 deletions

View file

@ -78,9 +78,9 @@ sub menuWrapper {
$output .= $_[0];
$output .= '</td><td width="30%" class="tableMenu" valign="top">';
foreach $key (keys %{$_[1]}) {
$output .= '<li><a href="'.$key.'">'.$_[1]->{$key}.'</a>';
$output .= '<li><a href="'.$key.'">'.$_[1]->{$key}.'</a></li>';
}
$output .= '<li><a href="'.WebGUI::URL::page().'">'.WebGUI::International::get(493).'</a>';
$output .= '<li><a href="'.WebGUI::URL::page().'">'.WebGUI::International::get(493).'</a></li>';
$output .= '</td></tr></table>';
return $output;
}