mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
FIX Avoid having search fields with the same names as form elements
This commit is contained in:
parent
2f67be61c1
commit
c54e7317d2
@ -264,6 +264,11 @@ class GridFieldFilterHeader implements GridField_URLHandler, GridField_HTMLProvi
|
||||
return new HTTPResponse(_t(__CLASS__ . '.SearchFormFaliure', 'No search form could be generated'), 400);
|
||||
}
|
||||
|
||||
// Append a prefix to search field names to prevent conflicts with other fields in the search form
|
||||
foreach ($searchFields as $field) {
|
||||
$field->setName('Search__' . $field->getName());
|
||||
}
|
||||
|
||||
$columns = $gridField->getColumns();
|
||||
|
||||
// Update field titles to match column titles
|
||||
|
Loading…
Reference in New Issue
Block a user