原文:http://www.phpbb2.de/ftopic39239.html
可以到這邊來下載(easymod 0.3.0 測試OK)It has come to my attention that there may be a bug in this release which will affect those who run a forum with multiple languages installed and in use and lead to the default language being changed under some circumstances.
If this issue is affecting you, the following change should resolve it.
http://www.gffclan.com/dload.php?action=file&file_id=9
#
#-----[ OPEN ]---------------------------------------------
#
代碼: 選擇全部
includes/functions.php#-----[ FIND ]---------------------------------------------
# Line 510
代碼: 選擇全部
$board_config['default_lang'] = $default_lang;
$userdata['user_lang'] = $default_lang;#-----[ REPLACE WITH ]---------------------------------------------
#
代碼: 選擇全部
$userdata['user_lang'] = $default_lang;#-----[ FIND ]---------------------------------------------
# Line 513
代碼: 選擇全部
elseif ( $board_config['default_lang'] !== $default_lang )#-----[ REPLACE WITH ]---------------------------------------------
#
代碼: 選擇全部
elseif ( $userdata['user_id'] === ANONYMOUS && $board_config['default_lang'] !== $default_lang )#-----[ FIND ]---------------------------------------------
# Line 524
代碼: 選擇全部
$board_config['default_lang'] = $default_lang;
}#-----[ REPLACE WITH ]---------------------------------------------
#
代碼: 選擇全部
}
$board_config['default_lang'] = $default_lang;#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
