aboutsummaryrefslogtreecommitdiff
path: root/locopy/wp-settings.php
diff options
context:
space:
mode:
authorEugen Wissner <belka@caraus.de>2025-12-23 16:45:10 +0100
committerEugen Wissner <belka@caraus.de>2025-12-23 16:45:10 +0100
commit4fc36be9dc8a64cafe694335dff972d5ee29ee57 (patch)
tree6aa8ace7b810d268e0ef44374c9c441170ffab79 /locopy/wp-settings.php
parent071018dce6b35afe225903772488495f5f311509 (diff)
downloadkazbek-4fc36be9dc8a64cafe694335dff972d5ee29ee57.tar.gz
Allow custom siteurl/home for locopy
Diffstat (limited to 'locopy/wp-settings.php')
-rw-r--r--locopy/wp-settings.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/locopy/wp-settings.php b/locopy/wp-settings.php
index 42aec0e..c35e8ed 100644
--- a/locopy/wp-settings.php
+++ b/locopy/wp-settings.php
@@ -4,9 +4,9 @@ define('ABSPATH', __DIR__ . '/');
require_once 'wp-config.php';
echo json_encode([
- 'DB_NAME' => DB_NAME,
- 'DB_USER' => DB_USER,
- 'DB_PASSWORD' => DB_PASSWORD,
- 'DB_HOST' => DB_HOST,
- 'table_prefix' => $table_prefix
+ 'dbName' => DB_NAME,
+ 'dbUser' => DB_USER,
+ 'dbPassword' => DB_PASSWORD,
+ 'dbHost' => DB_HOST,
+ 'tablePrefix' => $table_prefix
]);