Changeset 757 for branches/Ver3.0/xpressme_integration_kit/wp-config.php
- Timestamp:
- May 23, 2011, 3:03:57 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/Ver3.0/xpressme_integration_kit/wp-config.php
r743 r757 18 18 19 19 /** Do not change. The name of the database for WordPress */ 20 define('DB_NAME', $ xoops_config->xoops_db_name);20 define('DB_NAME', $wpConfigInfo->get_db_name() ); 21 21 22 22 /** Do not change. MySQL database username */ 23 define('DB_USER', $ xoops_config->xoops_db_user);23 define('DB_USER', $wpConfigInfo->get_db_user() ); 24 24 25 25 /** Do not change. MySQL database password */ 26 define('DB_PASSWORD', $ xoops_config->xoops_db_pass);26 define('DB_PASSWORD', $wpConfigInfo->get_db_pass() ); 27 27 28 28 /** Do not change. MySQL hostname */ 29 define('DB_HOST', $ xoops_config->xoops_db_host);29 define('DB_HOST', $wpConfigInfo->get_db_host() ); 30 30 31 31 /** Database Charset to use in creating database tables. */ … … 61 61 */ 62 62 // Do not change. $table_prefix is generated from XOOPS DB Priefix and the module directory name. 63 $table_prefix = $ xoops_config->module_db_prefix;63 $table_prefix = $wpConfigInfo->get_db_prefix(); 64 64 65 65 /** … … 75 75 * define ('WPLANG', 'ja'); // language support to Japanese 76 76 */ 77 define ('WPLANG', $ xoops_config->wp_lang); // language detect from xoops language77 define ('WPLANG', $wpConfigInfo->get_wpLang() ); // language detect from xoops language 78 78 79 79 /* That's all, stop editing! Happy blogging. */
Note: See TracChangeset
for help on using the changeset viewer.