設為首頁收藏本站

艾歐踢論壇

 找回密碼
 立即註冊

QQ登錄

只需一步,快速開始

搜索
熱搜: 活動 交友 discuz
查看: 911|回復: 0
打印 上一主題 下一主題

Discuz X3.2 修改標題字數限制

[複製鏈接]
跳轉到指定樓層
樓主
發表於 2015-12-30 10:24:19 | 只看該作者 回帖獎勵 |倒序瀏覽 |閱讀模式
修改論壇標題字數限制,下面五個部分需要修改:

一、資料庫
二、JS驗證
三、模板限制
四,函數驗證
五,語言包

現以把標題字符限制80修改為120為例子:

一、資料庫修改資料庫標題字段的長度為120字符:執行下面的sql語句:
(注意修改你的表的前綴)

ALTER TABLE `pre_forum_post` CHANGE `subject` `subject` VARCHAR(120) NOT NULL;
ALTER TABLE `pre_forum_rsscache` CHANGE `subject` `subject` char(120) NOT NULL;
ALTER TABLE `pre_forum_thread` CHANGE `subject` `subject` char(120) NOT NULL;


或是把pre_forum_post、pre_forum_rsscache、pre_forum_thread的subject長度改成120

底下的全部都是需要把80改成120的文件
二、JS驗證:
1、找到文件static/js/forum_post.js
if(($('postsubmit').name != 'replysubmit' && !($('postsubmit').name == 'editsubmit' && !isfirstpost) && theform.subject.value == "") || !sortid && !special && trim(message) == "") {
                 showError('抱歉,您尚未輸入標題或內容');
                 return false;
         } else if(mb_strlen(theform.subject.value) > 80) {
                 showError('您的標題超過 80 個字符的限制');
                 return false;
         }

2、找到文件sitatic/js/forum.js
if(theform.message.value == '' && theform.subject.value == '') {
                 s = '抱歉,您尚未輸入標題或內容';
                 theform.message.focus();
         } else if(mb_strlen(theform.subject.value) > 80) {
                 s = '您的標題超過 80 個字符的限制';
                 theform.subject.focus();
        }

三、模板:
1、找到文件\template\default\forum\post_editor_extra.htm

修改5個 "80"

**這一段程式碼貼不出來


2、找到文件\template\default\forum\forumdisplay_fastpost.htm
< input type="text" id="subject" name="subject" class="px" value=""#0000ff">80);" tabindex="11" style="width: 25em" />

四,函數驗證:
找到文件source/function/function_post.php
if(dstrlen($subject) > 80) {
return 'post_subject_toolong';
}


五、找到語言包提示文字,打開 source/language/lang_messege.php
   'post_subject_toolong' => '抱歉,您的標題超過 80 個字符修改標題長度',

< span>{lang comment_message1} <strong id="checklen">80</strong> {lang comment_message2}</span>


分享到:  QQ好友和群QQ好友和群 QQ空間QQ空間 騰訊微博騰訊微博 騰訊朋友騰訊朋友
收藏收藏 轉播轉播 分享分享 分享淘帖
回復

使用道具 舉報

您需要登錄後才可以回帖 登錄 | 立即註冊

本版積分規則

小黑屋|Archiver|手機版|艾歐踢創新工坊    

GMT+8, 2024-6-10 18:40 , Processed in 0.251070 second(s), 20 queries .

Powered by Discuz! X3.2

© 2001-2013 Comsenz Inc.

快速回復 返回頂部 返回列表