1 頁 (共 1 頁)

會員個人資料頁面顯示註冊天數

發表於 : 2006-09-21 , 8:54
懸壺子
會員個人資料頁面顯示註冊天數
參考自 http://starryhometown.net/forum/viewtopic.php?t=60

代碼: 選擇全部

# 
#-----[ OPEN 打開 ]------------------------------------------------ 
# 
代碼: 
includes/usercp_viewprofile.php  

# 
#-----[ FIND 尋找 ]------------------------------------------------ 
# 
代碼: 
'POSTS' => $profiledata['user_posts'],  

# 
#-----[ AFTER, ADD 之後, 加上 ]------------------------------------ 
# 
代碼: 
'PERIOD' => sprintf($lang['period'], $memberdays),  

# 
#-----[ OPEN 打開 ]------------------------------------------------ 
# 
代碼: 
language/lang_chinese_traditional_taiwan/lang_main.php  

# 
#-----[ FIND 尋找 ]------------------------------------------------ 
# 
代碼: 
// 
// That's all Folks!  

# 
#-----[ BEFORE ADD 之前, 加上 ]------------------------------------ 
# 
代碼: 
// 顯示註冊天數 
$lang['period']       = '於 <b>%d</b> 天前'; // %d = days  

# 
#-----[ OPEN 打開 ]------------------------------------------------ 
# 
代碼: 
templates/subSilver/profile_view_body.tpl  

# 
#-----[ FIND 尋找 ]------------------------------------------------ 
# 
代碼: 
<td width="100%"><b><span class="gen">{JOINED}</span></b></td>  

# 
#-----[ REPLACE WITH 替換 ]---------------------------------------- 
# 
代碼: 
<td width="100%"><span class="gen"><b>{JOINED}</b>  ( {PERIOD} )</span></td>  

# 
#-----[ SAVE/CLOSE ALL FILES 儲存/關閉所有檔案 ]------------------- 
# 
# EoM 外掛修正結束