|
From: MW <jo...@us...> - 2008-02-11 11:13:22
|
Update of /cvsroot/mxbb/core In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv9731 Modified Files: common.php index.php Log Message: code styling: replaced hard coded .php file extentions with $phpEx Index: common.php =================================================================== RCS file: /cvsroot/mxbb/core/common.php,v retrieving revision 1.81 retrieving revision 1.82 diff -C2 -d -r1.81 -r1.82 *** common.php 10 Feb 2008 21:04:29 -0000 1.81 --- common.php 11 Feb 2008 11:13:17 -0000 1.82 *************** *** 243,249 **** if ($portal_config['mod_rewrite']) { ! if ( file_exists( $mx_root_path . 'modules/mx_mod_rewrite/includes/rewrite_functions.php' ) ) { ! include_once( $mx_root_path . 'modules/mx_mod_rewrite/includes/rewrite_functions.php' ); if (class_exists('mx_mod_rewrite')) --- 243,249 ---- if ($portal_config['mod_rewrite']) { ! if ( file_exists( $mx_root_path . 'modules/mx_mod_rewrite/includes/rewrite_functions.' . $phpEx ) ) { ! include_once( $mx_root_path . 'modules/mx_mod_rewrite/includes/rewrite_functions.' . $phpEx ); if (class_exists('mx_mod_rewrite')) Index: index.php =================================================================== RCS file: /cvsroot/mxbb/core/index.php,v retrieving revision 1.73 retrieving revision 1.74 diff -C2 -d -r1.73 -r1.74 *** index.php 4 Feb 2008 16:03:00 -0000 1.73 --- index.php 11 Feb 2008 11:13:17 -0000 1.74 *************** *** 287,291 **** if ( $mx_block->auth_view && $mx_block->show_block && $mx_block->module_root_path != 'modules/mx_phpbb/' || $mx_block->auth_mod ) { ! $layouttemplate->assign_block_vars('layout_column.blocks.block_header', array()); } --- 287,291 ---- if ( $mx_block->auth_view && $mx_block->show_block && $mx_block->module_root_path != 'modules/mx_phpbb/' || $mx_block->auth_mod ) { ! $layouttemplate->assign_block_vars('layout_column.blocks.block_header', array()); } |