1 頁 (共 1 頁)

[修正]functions.php - 2006/06/09

發表於 : 2006-06-11 03:22
godbless
這個升級檔是在升級為2.0.21後,會需要做的多國語言設定修正

原文:http://www.phpbb2.de/ftopic39239.html
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.
可以到這邊來下載(easymod 0.3.0 測試OK)
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 ]------------------------------------------