[修改]PHPBB 與 4images 合併後的問題修正
發表於 : 2003-07-27 18:51
4images並沒有版主的功能\r
所以 user_level 中就沒有MOD的等級...
如果是PHPBB的板主
在4images貼評論時 會顯示為 '訪客'
修正方法:
打開4images/details.php
尋找\r
在下方加上
打開 4images/includes/constants.php
尋找\r
在下方加上
這樣就可以了 ^_^
所以 user_level 中就沒有MOD的等級...
如果是PHPBB的板主
在4images貼評論時 會顯示為 '訪客'
修正方法:
打開4images/details.php
尋找\r
代碼: 選擇全部
elseif ($comment_row[$i][$user_table_fields['user_level']] == ADMIN) {
$comment_user_info = $lang['userlevel_admin'];
}代碼: 選擇全部
elseif ($comment_row[$i][$user_table_fields['user_level']] == MOD) {
$comment_user_info = $lang['userlevel_user'];
}打開 4images/includes/constants.php
尋找\r
代碼: 選擇全部
// User levels代碼: 選擇全部
define('MOD', 2);這樣就可以了 ^_^