묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
게시판에 글이나 댓글을 쓸때 글자수 제한하는 방법
2010.08.01 20:44
글이나 댓글을 쓸때 미리 정한 글자수 이상으로 쓰지 않으면 경고메시지가 뜨면서 작성을 막는 방법이 있을까요?
알려주시면 감사하겠습니다.
댓글 1
-
라르게덴
2010.08.01 21:42
-
도라란
2010.08.01 22:14
혹시 게시판 스킨만 편집해서 막는 방법은 없을까요? 코어수정은 차후 업데이트시에 복원되서.. -
라르게덴
2010.08.01 22:53
insert.xml을 복사하셔서 본인 폴더에 두시고 <!--%import("insert.xml")--> 이걸 실행하세요.
현재 사용하시는 스킨에 write_form.html (댓글은 comment_form.html , comment.html) 에서 <form> 태그를 보시면 xml 파일을 호출하는게 있습니다.
onsubmit="return procFilter(this, insert_comment)" 이런 부분인데요.
위 명령으로 보면 insert_comment.xml 이런 파일이 스킨 파일이나 modules/board/tpl/filter/ 안에 존재합니다.
<node target="content" required="true" minlength="1" />
<node target="content" required="true" maxlength="20"/>
minlength가 글자수 이하면 경고, maxlength는 글자수 이상이면 경고입니다.
적당히 수정하시면 되겠습니다.