- 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:
Martin Kamerbeek 2009-05-28 16:31:45 +00:00
parent c8781f8b55
commit 1ec0ec5961
3 changed files with 20 additions and 12 deletions

View file

@ -245,7 +245,7 @@ sub getDefaultValue {
}
else {
$value =~ s/\r//g;
@values = split "\n", $value;
@values = split /\n/, $value;
}
}
}