Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drupal
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
drupal
Merge requests
!4860
Issue
#3389282
: Fix spelling for words that are only misspelled in comments
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Expand sidebar
Closed
Issue
#3389282
: Fix spelling for words that are only misspelled in comments
issue/drupal-3389282:3389282-fix-spelling-for
into
11.x
Overview
3
Commits
5
Pipelines
7
Changes
23
Closed
Issue #3389282: Fix spelling for words that are only misspelled in comments
quietone
requested to merge
issue/drupal-3389282:3389282-fix-spelling-for
into
11.x
Sep 23, 2023
Overview
3
Commits
5
Pipelines
7
Changes
23
0
0
Merge request reports
Compare
11.x
version 6
a35246bf
Oct 6, 2023
version 5
fb3770dd
Oct 4, 2023
version 4
73b1050b
Oct 1, 2023
version 3
e455751f
Sep 26, 2023
version 2
166b5e72
Sep 24, 2023
version 1
f46e074e
Sep 23, 2023
11.x (base)
and
latest version
latest version
1eeaecb8
5 commits,
Oct 8, 2023
version 6
a35246bf
5 commits,
Oct 6, 2023
version 5
fb3770dd
4 commits,
Oct 4, 2023
version 4
73b1050b
3 commits,
Oct 1, 2023
version 3
e455751f
3 commits,
Sep 26, 2023
version 2
166b5e72
2 commits,
Sep 24, 2023
version 1
f46e074e
1 commit,
Sep 23, 2023
23 files
+
48
−
65
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
23
core/assets/scaffold/files/default.settings.php
+
10
−
10
View file @ 1eeaecb8
Edit in single-file editor
Open in Web IDE
Show full file
@@ -78,8 +78,8 @@
* @code
* $databases['default']['default'] = [
* 'database' => 'databasename',
* 'username' => 'sqlusername',
* 'password' => 'sqlpassword',
* 'username' => 'sql
_
username',
* 'password' => 'sql
_
password',
* 'host' => 'localhost',
* 'port' => '3306',
* 'driver' => 'mysql',
@@ -194,8 +194,8 @@
* $databases['default']['default'] = [
* 'driver' => 'pgsql',
* 'database' => 'databasename',
* 'username' => 'sqlusername',
* 'password' => 'sqlpassword',
* 'username' => 'sql
_
username',
* 'password' => 'sql
_
password',
* 'host' => 'localhost',
* 'prefix' => '',
* ];
@@ -205,7 +205,7 @@
* @code
* $databases['default']['default'] = [
* 'driver' => 'sqlite',
* 'database' => '/path/to/databasefilename',
* 'database' => '/path/to/database
_
filename',
* ];
* @endcode
*
@@ -216,8 +216,8 @@
* 'namespace' => 'Drupal\my_module\Driver\Database\my_driver',
* 'autoload' => 'modules/my_module/src/Driver/Database/my_driver/',
* 'database' => 'databasename',
* 'username' => 'sqlusername',
* 'password' => 'sqlpassword',
* 'username' => 'sql
_
username',
* 'password' => 'sql
_
password',
* 'host' => 'localhost',
* 'prefix' => '',
* ];
@@ -231,8 +231,8 @@
* 'namespace' => 'Drupal\my_module\Driver\Database\my_driver',
* 'autoload' => 'modules/my_module/src/Driver/Database/my_driver/',
* 'database' => 'databasename',
* 'username' => 'sqlusername',
* 'password' => 'sqlpassword',
* 'username' => 'sql
_
username',
* 'password' => 'sql
_
password',
* 'host' => 'localhost',
* 'prefix' => '',
* 'dependencies' => [
@@ -588,7 +588,7 @@
* the output of phpinfo(). The full output can contain sensitive information
* so by default Drupal removes some sections.
*
* This behavio
u
r can be configured by setting this variable to a different
* This behavior can be configured by setting this variable to a different
* value corresponding to the flags parameter of phpinfo().
*
* If you need to expose more information in the report - for example to debug a
Loading