mirror of
https://github.com/silverstripe/silverstripe-userforms.git
synced 2024-10-22 17:05:42 +02:00
Escaped addField() query to work with Postgres
I was getting a warning in the CMS with a Postgres database due to the fields on lines 191 - 193 not being double quoted.
This commit is contained in:
parent
aa0f8dbc7b
commit
06ad657f6c
@ -188,9 +188,9 @@ class FieldEditor extends FormField {
|
||||
|
||||
$sqlQuery = new SQLQuery();
|
||||
$sqlQuery = $sqlQuery
|
||||
->setSelect('MAX(Sort)')
|
||||
->setFrom("EditableFormField")
|
||||
->setWhere("ParentID = $parentID");
|
||||
->setSelect("MAX(\"Sort\")")
|
||||
->setFrom("\"EditableFormField\"")
|
||||
->setWhere("\"ParentID\" = $parentID");
|
||||
|
||||
$sort = $sqlQuery->execute()->value() + 1;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user