mirror of
https://github.com/silverstripe/silverstripe-userforms.git
synced 2024-10-22 17:05:42 +02:00
Merge remote-tracking branch 'origin/4.1' into 4.2
This commit is contained in:
commit
d756578a26
@ -42,10 +42,10 @@ class UserFormRecipientItemRequest extends GridFieldDetailForm_ItemRequest
|
||||
|
||||
foreach ($fields as $field) {
|
||||
$data->push(new ArrayData(array(
|
||||
'Name' => $field->Name,
|
||||
'Title' => $field->Title,
|
||||
'Value' => '$' . $field->Name,
|
||||
'FormattedValue' => '$' . $field->Name
|
||||
'Name' => $field->dbObject('Name'),
|
||||
'Title' => $field->dbObject('Title'),
|
||||
'Value' => DBField::create_field('Varchar', '$' . $field->Name),
|
||||
'FormattedValue' => DBField::create_field('Varchar', '$' . $field->Name)
|
||||
)));
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user