mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
Quote table/column names when falling back to $fullName
This commit is contained in:
parent
c3e9e44204
commit
5dc5e0b4c5
@ -183,7 +183,8 @@ abstract class SearchFilter extends Object {
|
||||
if($candidateClass == 'DataObject') {
|
||||
// fallback to the provided name in the event of a joined column
|
||||
// name (as the candidate class doesn't check joined records)
|
||||
return $this->fullName;
|
||||
$parts = explode('.', $this->fullName);
|
||||
return '"' . implode('"."', $parts) . '"';
|
||||
}
|
||||
|
||||
return "\"$candidateClass\".\"$this->name\"";
|
||||
|
Loading…
Reference in New Issue
Block a user