Changeset 787 for trunk/xpressme_integration_kit
- Timestamp:
- Jun 1, 2011, 7:49:03 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/xpressme_integration_kit/wp-config.php
r757 r787 18 18 19 19 /** Do not change. The name of the database for WordPress */ 20 define('DB_NAME', $ wpConfigInfo->get_db_name() );20 define('DB_NAME', $modInfo->get_db_name() ); 21 21 22 22 /** Do not change. MySQL database username */ 23 define('DB_USER', $ wpConfigInfo->get_db_user() );23 define('DB_USER', $modInfo->get_db_user() ); 24 24 25 25 /** Do not change. MySQL database password */ 26 define('DB_PASSWORD', $ wpConfigInfo->get_db_pass() );26 define('DB_PASSWORD', $modInfo->get_db_pass() ); 27 27 28 28 /** Do not change. MySQL hostname */ 29 define('DB_HOST', $ wpConfigInfo->get_db_host() );29 define('DB_HOST', $modInfo->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 = $ wpConfigInfo->get_db_prefix();63 $table_prefix = $modInfo->get_module_db_prefix(); 64 64 65 65 /** … … 75 75 * define ('WPLANG', 'ja'); // language support to Japanese 76 76 */ 77 define ('WPLANG', $ wpConfigInfo->get_wpLang() ); // language detect from xoops language77 define ('WPLANG', $modInfo->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.