Fix bug where some fields weren't populated correctly.
This commit is contained in:
parent
3deab86677
commit
a5bef12584
1 changed files with 1 additions and 1 deletions
|
|
@ -439,7 +439,7 @@ sub www_edit {
|
|||
my $configuration = $self->get('configuration') || {};
|
||||
while ( my( $name, $properties ) = each %fields ) {
|
||||
$properties->{ name } = $name;
|
||||
$properties->{ value } = $configuration->{ $name } if exists $properties->{ value };
|
||||
$properties->{ value } = $configuration->{ $name } if exists $configuration->{ $name };
|
||||
|
||||
my $formField = WebGUI::Form::DynamicField->new( $session, %{ $properties } );
|
||||
my $html = $self->admin->canOverride
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue