- Fixed a few bugs in the new form system related to UI levels and hidden
fields. - fix [ 1275024 ] Can not edit layout on 6.7.2 - fix [ 1262235 ] sql report form params
This commit is contained in:
parent
c687487df1
commit
748fddb85b
7 changed files with 33 additions and 33 deletions
|
|
@ -94,11 +94,8 @@ The normal params you'd pass in to the field. Included in this list must be one
|
|||
|
||||
sub new {
|
||||
my $class = shift;
|
||||
my $self = $class->SUPER::new(@_);
|
||||
my $param = {};
|
||||
foreach my $key (keys %{$self}) {
|
||||
$param->{$key} = $self->{$key};
|
||||
}
|
||||
my %raw = @_;
|
||||
my $param = \%raw;
|
||||
my $fieldType = ucfirst($param->{fieldType});
|
||||
delete $param->{fieldType};
|
||||
# Set options for fields that use a list.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue