|
From: MW <jo...@us...> - 2008-02-11 11:13:21
|
Update of /cvsroot/mxbb/core/install In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv9731/install Modified Files: mx_install.php Log Message: code styling: replaced hard coded .php file extentions with $phpEx Index: mx_install.php =================================================================== RCS file: /cvsroot/mxbb/core/install/mx_install.php,v retrieving revision 1.90 retrieving revision 1.91 diff -C2 -d -r1.90 -r1.91 *** mx_install.php 10 Feb 2008 20:58:47 -0000 1.90 --- mx_install.php 11 Feb 2008 11:13:17 -0000 1.91 *************** *** 650,654 **** @chmod($mx_root_path . "config.$phpEx", 0644); ! if ( !($fp = @fopen($mx_root_path.'config.php', 'w')) ) { $arg_mxbb_url = '<span style="color:blue;">' . $portal_url . '</span>'; --- 650,654 ---- @chmod($mx_root_path . "config.$phpEx", 0644); ! if ( !($fp = @fopen($mx_root_path.'config.' . $phpEx, 'w')) ) { $arg_mxbb_url = '<span style="color:blue;">' . $portal_url . '</span>'; *************** *** 711,715 **** @chmod($mx_root_path . "config.$phpEx", 0644); ! if ( !($fp = @fopen($mx_root_path.'config.php', 'w')) ) { $arg_mxbb_url = '<span style="color:blue;">' . $portal_url . '</span>'; --- 711,715 ---- @chmod($mx_root_path . "config.$phpEx", 0644); ! if ( !($fp = @fopen($mx_root_path.'config.' . $phpEx, 'w')) ) { $arg_mxbb_url = '<span style="color:blue;">' . $portal_url . '</span>'; |