|
From: Jon O. <jon...@us...> - 2005-04-20 19:30:29
|
Update of /cvsroot/mxbb/mx_kb In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4138/modules/mx_kb Modified Files: db_install.php db_uninstall.php db_upgrade.php kb.php kb_search.php Log Message: fixing incompatibility with core 2.7.6 define( 'MXBB_27x', file_exists( $mx_root_path . 'more_smilies.php' ) ); replaced by define( 'MXBB_27x', file_exists( $mx_root_path . 'mx_login.php' ) ); Index: kb_search.php =================================================================== RCS file: /cvsroot/mxbb/mx_kb/kb_search.php,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** kb_search.php 9 Apr 2005 21:41:28 -0000 1.12 --- kb_search.php 20 Apr 2005 19:30:19 -0000 1.13 *************** *** 80,84 **** } ! define( 'MXBB_27x', file_exists( $mx_root_path . 'more_smilies.php' ) ); include_once( $phpbb_root_path . 'includes/functions_post.' . $phpEx ); --- 80,84 ---- } ! define( 'MXBB_27x', file_exists( $mx_root_path . 'mx_login.php' ) ); include_once( $phpbb_root_path . 'includes/functions_post.' . $phpEx ); Index: kb.php =================================================================== RCS file: /cvsroot/mxbb/mx_kb/kb.php,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** kb.php 9 Apr 2005 21:41:28 -0000 1.18 --- kb.php 20 Apr 2005 19:30:19 -0000 1.19 *************** *** 71,75 **** // End session management ! define( 'MXBB_27x', file_exists( $mx_root_path . 'more_smilies.php' ) ); if ( !isset( $HTTP_GET_VARS['print'] ) ) --- 71,75 ---- // End session management ! define( 'MXBB_27x', file_exists( $mx_root_path . 'mx_login.php' ) ); if ( !isset( $HTTP_GET_VARS['print'] ) ) *************** *** 120,124 **** else { ! define( 'MXBB_27x', file_exists( $mx_root_path . 'more_smilies.php' ) ); // Read block Configuration --- 120,124 ---- else { ! define( 'MXBB_27x', file_exists( $mx_root_path . 'mx_login.php' ) ); // Read block Configuration Index: db_uninstall.php =================================================================== RCS file: /cvsroot/mxbb/mx_kb/db_uninstall.php,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** db_uninstall.php 9 Apr 2005 21:41:27 -0000 1.10 --- db_uninstall.php 20 Apr 2005 19:30:19 -0000 1.11 *************** *** 45,49 **** // For compatibility with core 2.7.+ ! define( 'MXBB_27x', file_exists( $mx_root_path . 'more_smilies.php' ) ); if ( MXBB_27x ) --- 45,49 ---- // For compatibility with core 2.7.+ ! define( 'MXBB_27x', file_exists( $mx_root_path . 'mx_login.php' ) ); if ( MXBB_27x ) Index: db_install.php =================================================================== RCS file: /cvsroot/mxbb/mx_kb/db_install.php,v retrieving revision 1.29 retrieving revision 1.30 diff -C2 -d -r1.29 -r1.30 *** db_install.php 12 Apr 2005 19:30:42 -0000 1.29 --- db_install.php 20 Apr 2005 19:30:18 -0000 1.30 *************** *** 50,54 **** // For compatibility with core 2.7.+ ! define( 'MXBB_27x', file_exists( $mx_root_path . 'more_smilies.php' ) ); if ( MXBB_27x ) --- 50,54 ---- // For compatibility with core 2.7.+ ! define( 'MXBB_27x', file_exists( $mx_root_path . 'mx_login.php' ) ); if ( MXBB_27x ) Index: db_upgrade.php =================================================================== RCS file: /cvsroot/mxbb/mx_kb/db_upgrade.php,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** db_upgrade.php 12 Apr 2005 19:30:42 -0000 1.22 --- db_upgrade.php 20 Apr 2005 19:30:19 -0000 1.23 *************** *** 49,53 **** // For compatibility with core 2.7.+ ! define( 'MXBB_27x', file_exists( $mx_root_path . 'more_smilies.php' ) ); if ( MXBB_27x ) --- 49,53 ---- // For compatibility with core 2.7.+ ! define( 'MXBB_27x', file_exists( $mx_root_path . 'mx_login.php' ) ); if ( MXBB_27x ) |