fixed a small bug in WebGUI::ProfileField
This commit is contained in:
parent
399d80c8af
commit
5c62975421
2 changed files with 3 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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"));
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue