|
From: Jon O. <jon...@us...> - 2008-02-20 21:07:33
|
Update of /cvsroot/mxbb/mx_phpbb In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv12442 Modified Files: mx_phpbb.php Log Message: quotes around function names fix for languages Index: mx_phpbb.php =================================================================== RCS file: /cvsroot/mxbb/mx_phpbb/mx_phpbb.php,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** mx_phpbb.php 19 Feb 2008 21:39:46 -0000 1.16 --- mx_phpbb.php 20 Feb 2008 21:07:27 -0000 1.17 *************** *** 73,77 **** include_once($mx_root_path . "modules/mx_phpbb/includes/forum_hack.$phpEx"); include_once($mx_root_path . "modules/mx_phpbb/includes/phpbb_constants.$phpEx"); ! // // For core 2.9.x+ --- 73,77 ---- include_once($mx_root_path . "modules/mx_phpbb/includes/forum_hack.$phpEx"); include_once($mx_root_path . "modules/mx_phpbb/includes/phpbb_constants.$phpEx"); ! echo($default_lang); // // For core 2.9.x+ *************** *** 79,83 **** if (file_exists( $mx_root_path . "includes/shared/phpbb2/language/lang_" . $default_lang . "/lang_main.$phpEx")) { ! @include($mx_root_path . "includes/shared/phpbb2/language/lang_english/lang_main.$phpEx"); } else if (file_exists( $mx_root_path . "includes/shared/phpbb2/language/lang_english/lang_main.$phpEx")) --- 79,83 ---- if (file_exists( $mx_root_path . "includes/shared/phpbb2/language/lang_" . $default_lang . "/lang_main.$phpEx")) { ! @include($mx_root_path . "includes/shared/phpbb2/language/lang_" . $default_lang . "/lang_main.$phpEx"); } else if (file_exists( $mx_root_path . "includes/shared/phpbb2/language/lang_english/lang_main.$phpEx")) |