的資料我的上網方式:ADSL
我的 phpBB2 版本:phpBB 2.0.21
我的 domain(網域名稱) :www.photofreaker.com
我的 phpBB2 連結網址: http://www.photofreaker.com/forums/index.php
麻煩知道的大大幫我解答...謝謝!!
版主: 版主管理群
的資料
代碼: 選擇全部
{postrow.POSTER_ONLINE}{postrow.GALLERY_IMG}{postrow.PROFILE_IMG}{postrow.PM_IMG}{postrow.EMAIL_IMG}{postrow.WWW_IMG}{postrow.AIM_IMG}{postrow.YIM_IMG}{postrow.MSN_IMG}{postrow.ICQ_IMG}代碼: 選擇全部
{postrow.PROFILE_IMG} {postrow.PM_IMG} {postrow.EMAIL_IMG} {postrow.WWW_IMG} {postrow.AIM_IMG} {postrow.YIM_IMG} {postrow.MSN_IMG}看來您的終極目標, 是希望會員無法檢視個人資料.wing2tw 寫:如何移除表發表人資料,如圖的資料
我的上網方式:ADSL
我的 phpBB2 版本:phpBB 2.0.21
我的 domain(網域名稱) :www.photofreaker.com
我的 phpBB2 連結網址: http://www.photofreaker.com/forums/index.php
麻煩知道的大大幫我解答...謝謝!!
代碼: 選擇全部
if ( $mode == 'viewprofile' )
{
include($phpbb_root_path . 'includes/usercp_viewprofile.'.$phpEx);
exit;
}
代碼: 選擇全部
if ( $mode == 'viewprofile' )
{
// 限系統管理員可以檢視
if( $userdata['user_level'] != ADMIN)
{
$er_msg = "抱歉! 限系統管理員可以檢視";
message_die(GENERAL_MESSAGE, $er_msg);
}
include($phpbb_root_path . 'includes/usercp_viewprofile.'.$phpEx);
exit;
}