mirror of
https://github.com/silverstripe/silverstripe-userforms.git
synced 2024-10-22 17:05:42 +02:00
BUG: Fix radio field with " in Title.
This commit is contained in:
parent
e8aeb692fd
commit
0b0834c873
@ -19,7 +19,7 @@ class EditableRadioField extends EditableMultipleOptionField {
|
|||||||
|
|
||||||
if($optionSet) {
|
if($optionSet) {
|
||||||
foreach( $optionSet as $option ) {
|
foreach( $optionSet as $option ) {
|
||||||
$options[$option->Title] = $option->Title;
|
$options[$option->EscapedTitle] = $option->Title;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user