Skip to content

Commit

Permalink
PHP multidimentional array format
Browse files Browse the repository at this point in the history
This change make alpaca sends fields names as php can parce it like multidimentional arrays
As detailed explained here: 
gitana#221
  • Loading branch information
billbarsch committed Mar 16, 2015
1 parent 48f5152 commit 3755cf9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/Field.js
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,7 @@

if (lastSegment)
{
this.name = this.parent.name + "_" + lastSegment;
this.name = this.parent.name + "[" + lastSegment + "]";
this.nameCalculated = true;
}
}
Expand Down

0 comments on commit 3755cf9

Please sign in to comment.