- Fixed a bug in thingy which caused the defaultValue property for some list form elements to be ignored.
- Fixed a race condition introduced in a previous commit.
This commit is contained in:
parent
c8781f8b55
commit
1ec0ec5961
3 changed files with 20 additions and 12 deletions
|
|
@ -245,7 +245,7 @@ sub getDefaultValue {
|
|||
}
|
||||
else {
|
||||
$value =~ s/\r//g;
|
||||
@values = split "\n", $value;
|
||||
@values = split /\n/, $value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue