fix bad accessor assignments

This commit is contained in:
Colin Kuskie 2006-01-15 23:33:47 +00:00
parent 00d97170f9
commit cf23a67ae5
5 changed files with 5 additions and 5 deletions

View file

@ -125,7 +125,7 @@ Creates a series of hidden fields representing the data in the list.
sub toHtmlAsHidden {
my $self = shift;
$self->get("options") = $self->session->db->buildHashRef("select groupId,groupName from groups");
$self->set("options", $self->session->db->buildHashRef("select groupId,groupName from groups"));
return $self->SUPER::toHtmlAsHidden();
}