[問題]修改了程式碼之後...主題長度還是被切掉耶...

phpBB 2 MOD Support
無論是官方或非官方認證之外掛,安裝與使用問題討論。
(發表文章請按照公告格式發表,違者砍文)

版主: 版主管理群

主題已鎖定
bitemancat
星球公民
星球公民
文章: 40
註冊時間: 2004-05-23 21:54
來自: 從零開始的領域
聯繫:

[問題]修改了程式碼之後...主題長度還是被切掉耶...

文章 bitemancat »

問題外掛: Long Subject (120 letters)
\n參考連結:http://phpbb-tw.net/phpbb/viewtopic.php ... ng+Subject
使用版本:phpbb2.0.8a
網站位置:http://www.bitenancat.adsldns.org
狀況描述:
我照著以下的程式碼修改過了
SQL的語法我也增加過了
但是我的主題長度還是被切掉了耶\r
圖檔
圖檔

搜尋過了文章...但修改的方法還是跟下面的程式碼一樣\r
請問一下還有哪裡需要修改呢?
麻煩指教一下....thx!!!
:oops:

代碼: 選擇全部

############################################################## 
## MOD Title: Long Subject (120 letters) 
## MOD Author: Ralendil < ralendil@hotmail.com > Ravaille Franck - http://civs.org 
## MOD Description: Put to 120 subject limit. 
## 
## MOD Version: 1.0.0 
## 
## Installation Level: Easy 
## Installation Time: 1 minute 
## Files to Edit: templates/subSilver/posting_body.tpl 
## Included Files: N/A 
############################################################## 
## For Security Purposes, Please Check: http://www.phpbb.com/mods/downloads/ for the 
## latest version of this MOD. Downloading this MOD from other sites could cause malicious code 
## to enter into your phpBB Forum. As such, phpBB will not offer support for MOD's not offered 
## in our MOD-Database, located at: http://www.phpbb.com/mods/downloads/ 
############################################################## 
## Author Notes: 
## 
############################################################## 
## MOD History: 
## 1.0.0 Release 
############################################################## 
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD 
############################################################## 

# 
#-----[ SQL ]------------------------------------------ 
# 
ALTER TABLE `phpbb_topics` CHANGE `topic_title` `topic_title` CHAR(120) NOT NULL 


# 
#-----[ SQL ]------------------------------------------ 
# 
ALTER TABLE `phpbb_posts_text` CHANGE `post_subject` `post_subject` VARCHAR(120) DEFAULT NULL 

# 
#-----[ OPEN ]------------------------------------------ 
# 
templates/subSilver/posting_body.tpl 

# 
#-----[ FIND ]------------------------------------------ 
# 
<input type="text" name="subject" size="45" maxlength="60" style="width:450px" tabindex="2" class="post" value="{SUBJECT}" /> 

# 
#-----[ REPLACE WITH ]------------------------------------------ 
# 
<input type="text" name="subject" size="45" maxlength="120" style="width:450px" tabindex="2" class="post" value="{SUBJECT}" /> 

# 
#-----[ SAVE/CLOSE ALL FILES ]---------------------------------------- 

# 
# EoM
主題已鎖定

回到「外掛問題討論」