Skip to content

Commit e860dee

Browse files
committed
Docs: Use generic references to "Database" in wp-config-sample.php.
This replaces the references to "MySQL" info in the WordPress configuration sample file. Using the generic term "Database" now refers to either MySQL or MariaDB. Props Ov3rfly, audrasjb, hellofromTonya. Fixes #54610. git-svn-id: https://develop.svn.wordpress.org/trunk@52367 602fd350-edb4-49c9-b593-d223f7449a82
1 parent 83753bf commit e860dee

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

wp-config-sample.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
* This file contains the following configurations:
1010
*
11-
* * MySQL settings
11+
* * Database settings
1212
* * Secret keys
1313
* * Database table prefix
1414
* * ABSPATH
@@ -18,17 +18,17 @@
1818
* @package WordPress
1919
*/
2020

21-
// ** MySQL settings - You can get this info from your web host ** //
21+
// ** Database settings - You can get this info from your web host ** //
2222
/** The name of the database for WordPress */
2323
define( 'DB_NAME', 'database_name_here' );
2424

25-
/** MySQL database username */
25+
/** Database username */
2626
define( 'DB_USER', 'username_here' );
2727

28-
/** MySQL database password */
28+
/** Database password */
2929
define( 'DB_PASSWORD', 'password_here' );
3030

31-
/** MySQL hostname */
31+
/** Database hostname */
3232
define( 'DB_HOST', 'localhost' );
3333

3434
/** Database charset to use in creating database tables. */

wp-tests-config-sample.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
// Test with WordPress debug mode (default).
2727
define( 'WP_DEBUG', true );
2828

29-
// ** MySQL settings ** //
29+
// ** Database settings ** //
3030

3131
/*
3232
* This configuration file will be used by the copy of WordPress being tested.

0 commit comments

Comments
 (0)