diff --git a/manual/new/docs/en/configuration.txt b/manual/new/docs/en/configuration.txt index 1a2d33126..81a1cba7b 100644 --- a/manual/new/docs/en/configuration.txt +++ b/manual/new/docs/en/configuration.txt @@ -74,10 +74,10 @@ Delimited identifiers are known to generally work correctly under the following * Sqlite * Firebird -When using the {{quote_identifiers}} option, all of the field identifiers will be automatically quoted in the resulting SQL statements: +When using the {{ATTR_QUOTE_IDENTIFIER}} option, all of the field identifiers will be automatically quoted in the resulting SQL statements: -$conn->setAttribute('quote_identifiers', true); +$conn->setAttribute(Doctrine::ATTR_QUOTE_IDENTIFIER, true); will result in a SQL statement that all the field names are quoted with the backtick '`' operator (in MySQL).