diff options
author | Struan Donald <struan@exo.org.uk> | 2012-02-03 18:37:40 +0000 |
---|---|---|
committer | Struan Donald <struan@exo.org.uk> | 2012-02-03 18:37:40 +0000 |
commit | 37b617efc532a71af9e0d0eb72c674a065fb9505 (patch) | |
tree | f0937ae61a0871c771686ebb117bc3d07e2930d0 | |
parent | 96a0b0a1075971f6a0d86e1fe5942c22490d7c0f (diff) |
use the same option names here as elsewhere
-rw-r--r-- | blog/conf/wp-config.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/blog/conf/wp-config.php b/blog/conf/wp-config.php index 51ba7f623..38599b326 100644 --- a/blog/conf/wp-config.php +++ b/blog/conf/wp-config.php @@ -13,10 +13,10 @@ if (!@include "../conf/general") { } } } -define('DB_NAME', OPTION_FMSCODE_DB_NAME); // The name of the database -define('DB_USER', OPTION_FMSCODE_DB_USER); // Your MySQL username -define('DB_PASSWORD', OPTION_FMSCODE_DB_PASS); // ...and password -define('DB_HOST', OPTION_FMSCODE_DB_HOST); // 99% chance you won't need to change this value +define('DB_NAME', OPTION_FMSBLOG_DB_NAME); // The name of the database +define('DB_USER', OPTION_FMSBLOG_DB_USER); // Your MySQL username +define('DB_PASSWORD', OPTION_FMSBLOG_DB_PASS); // ...and password +define('DB_HOST', OPTION_FMSBLOG_DB_HOST); // 99% chance you won't need to change this value // Change the prefix if you want to have multiple blogs in a single database. |