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

@ -4,6 +4,8 @@
- Fixed a problem with the new autocommit code that caused reply posts not to
work in the collaboration system.
- Storage deletes were throwing fatals when they should throw warnings.
- Fixed a bug in WebGUI::ProfileField->getCategory which caused it to always
return undef. (Martin Kamerbeek / Procolix)
7.3.0

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"));
}