|
From: FlorinCB <ory...@us...> - 2009-09-28 11:24:43
|
Update of /cvsroot/mxbb/core/includes In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv14876/includes Modified Files: mx_constants.php mx_functions_core.php Log Message: update Index: mx_functions_core.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/mx_functions_core.php,v retrieving revision 1.116 retrieving revision 1.117 diff -C2 -d -r1.116 -r1.117 *** mx_functions_core.php 29 Jul 2009 05:08:12 -0000 1.116 --- mx_functions_core.php 28 Sep 2009 11:24:28 -0000 1.117 *************** *** 81,84 **** --- 81,85 ---- // include_once($mx_root_path . 'includes/sessions/'.$portal_config['portal_backend'].'/core.' . $phpEx); + // // Instantiate the mx_backend class *************** *** 149,153 **** $this->put('mxbb_config', $config); ! return ( $config ); } } --- 150,154 ---- $this->put('mxbb_config', $config); ! return ($config); } } Index: mx_constants.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/mx_constants.php,v retrieving revision 1.32 retrieving revision 1.33 diff -C2 -d -r1.32 -r1.33 *** mx_constants.php 16 Jul 2009 05:16:01 -0000 1.32 --- mx_constants.php 28 Sep 2009 11:24:28 -0000 1.33 *************** *** 70,74 **** * @access private */ ! define('TX_PORTAL_PAGES_OFFSET', 1000); /**#@+ --- 70,74 ---- * @access private */ ! define('MX_PORTAL_PAGES_OFFSET', 1000); /**#@+ *************** *** 76,105 **** * @access public */ ! define('PORTAL_TABLE', $tx_table_prefix . 'portal'); ! define('MENU_NAV_TABLE', $tx_table_prefix . 'menu_nav'); ! define('MENU_CAT_TABLE', $tx_table_prefix . 'menu_categories'); ! define('MODULE_TABLE', $tx_table_prefix . 'module'); ! define('FUNCTION_TABLE', $tx_table_prefix . 'function'); ! define('PARAMETER_TABLE', $tx_table_prefix . 'parameter'); ! define('PARAMETER_OPTION_TABLE', $tx_table_prefix . 'parameter_option'); ! define('PAGE_TABLE' , $tx_table_prefix . 'page'); ! define('COLUMN_TABLE' , $tx_table_prefix . 'column'); ! define('COLUMN_BLOCK_TABLE', $tx_table_prefix . 'column_block'); ! define('BLOCK_TABLE', $tx_table_prefix . 'block'); ! define('BLOCK_SYSTEM_PARAMETER_TABLE', $tx_table_prefix . 'block_system_parameter'); ! define('BLOCK_USER_PARAMETER_TABLE', $tx_table_prefix . 'block_user_parameter'); ! define('COLUMN_TEMPLATES' , $tx_table_prefix . 'column_templates'); ! define('PAGE_TEMPLATES' , $tx_table_prefix . 'page_templates'); ! define('TX_THEMES_TABLE', $tx_table_prefix.'themes'); ! define('TX_MATCH_TABLE' , $tx_table_prefix . 'wordmatch'); ! define('TX_WORD_TABLE' , $tx_table_prefix . 'wordlist'); ! define('TX_SEARCH_TABLE' , $tx_table_prefix . 'search_results'); /**#@-*/ --- 76,105 ---- * @access public */ ! define('PORTAL_TABLE', $mx_table_prefix . 'portal'); ! define('MENU_NAV_TABLE', $mx_table_prefix . 'menu_nav'); ! define('MENU_CAT_TABLE', $mx_table_prefix . 'menu_categories'); ! define('MODULE_TABLE', $mx_table_prefix . 'module'); ! define('FUNCTION_TABLE', $mx_table_prefix . 'function'); ! define('PARAMETER_TABLE', $mx_table_prefix . 'parameter'); ! define('PARAMETER_OPTION_TABLE', $mx_table_prefix . 'parameter_option'); ! define('PAGE_TABLE' , $mx_table_prefix . 'page'); ! define('COLUMN_TABLE' , $mx_table_prefix . 'column'); ! define('COLUMN_BLOCK_TABLE', $mx_table_prefix . 'column_block'); ! define('BLOCK_TABLE', $mx_table_prefix . 'block'); ! define('BLOCK_SYSTEM_PARAMETER_TABLE', $mx_table_prefix . 'block_system_parameter'); ! define('BLOCK_USER_PARAMETER_TABLE', $mx_table_prefix . 'block_user_parameter'); ! define('COLUMN_TEMPLATES' , $mx_table_prefix . 'column_templates'); ! define('PAGE_TEMPLATES' , $mx_table_prefix . 'page_templates'); ! define('MX_THEMES_TABLE', $mx_table_prefix.'themes'); ! define('MX_MATCH_TABLE' , $mx_table_prefix . 'wordmatch'); ! define('MX_WORD_TABLE' , $mx_table_prefix . 'wordlist'); ! define('MX_SEARCH_TABLE' , $mx_table_prefix . 'search_results'); /**#@-*/ |