Skip to content
Snippets Groups Projects
Commit 05e658df authored by Dries Buytaert's avatar Dries Buytaert
Browse files

- Patch #394938 by Damien Tournoud: defailt to exist.

parent 22cef755
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -46,7 +46,7 @@
/**
* Database settings:
*
* The $databases array specifies the database connection or
* The $databases array specifies the database connection or
* connections that Drupal may use. Drupal is able to connect
* to multiple databases, including multiple types of databases,
* during the same request.
......@@ -63,7 +63,7 @@
* 'port' => 3306,
* );
*
* The "driver" property indicates what Drupal database driver the
* The "driver" property indicates what Drupal database driver the
* connection should use. This is usually the same as the name of the
* database type, such as mysql or sqlite, but not always. The other
* properties will vary depending on the driver. For SQLite, you must
......@@ -80,7 +80,7 @@
* A target database allows Drupal to try to send certain queries to a
* different database if it can but fall back to the default connection if not.
* That is useful for master/slave replication, as Drupal may try to connect
* to a slave server when appropriate and if one is not available will simply
* to a slave server when appropriate and if one is not available will simply
* fall back to the single master server.
*
* The general format for the $databases array is as follows:
......@@ -232,7 +232,7 @@
*
* Remove the leading hash signs to enable.
*/
# $conf = array(
$conf = array(
# 'site_name' => 'My Drupal site',
# 'theme_default' => 'minnelli',
# 'anonymous' => 'Visitor',
......@@ -273,7 +273,7 @@
* your web server spoofing the X-Forwarded-For headers.
*/
# 'reverse_proxy_addresses' => array('a.b.c.d', ...), // Leave the comma here.
# );
);
/**
* String overrides:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment