Fixed a few XHTML 1.0 related bugs

This commit is contained in:
Wouter van Oijen 2005-09-01 13:11:28 +00:00
parent ad6b484f0e
commit 01ad8fd12c
7 changed files with 26 additions and 26 deletions

View file

@ -301,7 +301,7 @@ sub www_editProfileSettings {
$output .= moveDownIcon('op=moveProfileCategoryDown;cid='.$category{profileCategoryId});
$output .= ' <b>';
$output .= WebGUI::Operation::Shared::secureEval($category{categoryName});
$output .= '</b><br>';
$output .= '</b><br />';
$b = WebGUI::SQL->read("select * from userProfileField where
profileCategoryId=".quote($category{profileCategoryId})." order by sequenceNumber");
while (%field = $b->hash) {
@ -312,7 +312,7 @@ sub www_editProfileSettings {
$output .= moveDownIcon('op=moveProfileFieldDown;fid='.$field{fieldName});
$output .= ' ';
$output .= WebGUI::Operation::Shared::secureEval($field{fieldLabel});
$output .= '<br>';
$output .= '<br />';
}
$b->finish;
}