Actions
Bug #8907
closedwizard.php - $field['type'] - "Select" doesn't have the attribute "Size" defined
Start date:
09/17/2018
Due date:
% Done:
100%
Estimated time:
Plus Target Version:
Release Notes:
Affected Version:
Affected Architecture:
Description
The file wizard.php - $field['type'] option "Select" doesn't have the attribute "Size" defined.
From:
))->setHelp($field['description'])->setOnchange($onchange);
To:
))->setHelp($field['description'])->setOnchange($onchange)->setAttribute('size', $field['size']);
Not sure what "Size" should default to when its not defined by the XML wizard script.
if ($field['size']) { $size = " size='" . $field['size'] . "' "; }
Actions