summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (from parent 1:
4b79a43)
Its value was being ignored. Some kind of formbuilder bug?
Anyway, prefixing all keys with a section seems like a good idea
generally, in case there's ever overlap.
}
# multiple plugins can have the same field
}
# multiple plugins can have the same field
- my $name=defined $plugin ? $plugin.".".$key : $key;
+ my $name=defined $plugin ? $plugin.".".$key : $section.".".$key;
- if ($info{safe} && (ref $config{$key} eq 'ARRAY' || ref $info{example} eq 'ARRAY')) {
+ if ($info{safe} && (ref $value eq 'ARRAY' || ref $info{example} eq 'ARRAY')) {
push @{$value}, "", ""; # blank items for expansion
}
push @{$value}, "", ""; # blank items for expansion
}