fixed a small bug in WebGUI::ProfileField

This commit is contained in:
Martin Kamerbeek 2006-12-08 13:55:49 +00:00
parent 399d80c8af
commit 5c62975421
2 changed files with 3 additions and 1 deletions

View file

@ -248,7 +248,7 @@ Returns a WebGUI::ProfileCategory object for the category that this profile fiel
sub getCategory {
my $self = shift;
return WebGUI::ProfileCategory->new($self->session,$self->get("categoryId"));
return WebGUI::ProfileCategory->new($self->session,$self->get("profileCategoryId"));
}