第一步:
修改include/post.func.php
找:
- if(strlen($subject) > 80) {
- return 'post_subject_toolong';
- }
將
80 改為自己想要的字數 (最大255)
第二步:
修改 /include/js/post.js
找:
- else if(mb_strlen(theform.subject.value) > 80) {
- dalert('您的標題超過 80 個字符的限制。');
- return false;
將
80 改為自己想要的字數 (與第一步一致)
第三步:
修改 /include/js/viewthread.js
找:
- else if(mb_strlen(theform.subject.value) > 80) {
- s = '您的標題超過 80 個字符的限制。';
- theform.subject.focus();
- }
將
80 改為自己想要的字數 (與第一步、第二步一致)
第四步:
後台更新緩存
成功!