|
From: FlorinCB <ory...@us...> - 2009-10-23 07:46:53
|
Update of /cvsroot/mxbb/mx_counter/includes In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv23497/mx_counter/includes Modified Files: counter_common.php counter_constants.php Log Message: some fixed here and there not comitted Index: counter_common.php =================================================================== RCS file: /cvsroot/mxbb/mx_counter/includes/counter_common.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** counter_common.php 8 Feb 2008 23:40:24 -0000 1.2 --- counter_common.php 23 Oct 2009 07:46:43 -0000 1.3 *************** *** 34,39 **** // ! require($module_root_path . 'includes/counter_constants.'.$phpEx); ! // ================================================================================ --- 34,38 ---- // ! include_once($module_root_path . 'includes/counter_constants.'.$phpEx); // ================================================================================ Index: counter_constants.php =================================================================== RCS file: /cvsroot/mxbb/mx_counter/includes/counter_constants.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** counter_constants.php 8 Feb 2008 23:40:24 -0000 1.2 --- counter_constants.php 23 Oct 2009 07:46:44 -0000 1.3 *************** *** 17,22 **** // Define table names. // ! !defined('COUNTER_CONFIG_TABLE') ? define('COUNTER_CONFIG_TABLE', $mx_table_prefix.'counter_config') : false; ! !defined('COUNTER_SESSION_TABLE') ? define('COUNTER_SESSION_TABLE', $mx_table_prefix.'counter_session') : false; --- 17,22 ---- // Define table names. // ! @define('COUNTER_CONFIG_TABLE', $mx_table_prefix.'counter_config'); ! @define('COUNTER_SESSION_TABLE', $mx_table_prefix.'counter_session'); |