We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f5de99 commit 6079189Copy full SHA for 6079189
wp-includes/sqlite/db.php
@@ -64,8 +64,8 @@
64
*
65
* TODO: For version 3.0, enforce the DB_NAME constant and remove the fallback.
66
*/
67
-if ( defined( 'SQLITE_DB_NAME' ) && '' !== SQLITE_DB_NAME ) {
68
- $db_name = SQLITE_DB_NAME;
+if ( defined( 'WP_SQLITE_DB_NAME' ) && '' !== WP_SQLITE_DB_NAME ) {
+ $db_name = WP_SQLITE_DB_NAME;
69
} elseif ( defined( 'DB_NAME' ) && '' !== DB_NAME ) {
70
$db_name = DB_NAME;
71
} else {
0 commit comments