-
Notifications
You must be signed in to change notification settings - Fork 159
Closed
Labels
Description
If I have this structure
<form id="times">
<input name="begin[time]" value="A">
<input name="begin[date]" value="B">
<input name="end[time]" value="C">
<input name="end[date]" value="D">
</form>I get
{
begin :{time:"A",date:"B"},
end :{time:["C"],date:["D"]}
}instead of the expected
{
begin :{time:"A",date:"B"},
end :{time:"C",date:"D"}
}