- Fixed bug where viewProfile did not show pretty printed values

- Fixed bug/rfe where it was not obvious when hovering over the rank
   column in the Asset Manager that you can drag rows up and down.
   Added cursor:move to the td's style.
This commit is contained in:
Matthew Wilson 2005-12-12 04:33:54 +00:00
parent 1d5ab960ee
commit 1a1f477563
4 changed files with 10 additions and 4 deletions

View file

@ -159,7 +159,7 @@ sub www_viewProfile {
next if ($field->get("fieldName") eq "email" && !$u->profileField("publicEmail"));
push(@array, {
'profile.label' => $field->getLabel,
'profile.value' => $u->profileField($field->getId)
'profile.value' => $field->formField({dataDefault => $u->profileField($field->getId)},2)
});
}
}