게시판 모듈의 글쓴이 길이를 20자로 제한

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@6205 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2009-04-28 00:18:24 +00:00
parent 56042c0abb
commit 06d59f203c
2 changed files with 2 additions and 2 deletions

View file

@ -1,6 +1,6 @@
<filter name="insert" module="board" act="procBoardInsertDocument">
<form>
<node target="nick_name" required="true" />
<node target="nick_name" required="true" maxlength="20"/>
<node target="password" required="true" />
<node target="email_address" maxlength="250" />
<node target="homepage" maxlength="250"/>

View file

@ -1,7 +1,7 @@
<filter name="insert_comment" module="board" act="procBoardInsertComment">
<form>
<node target="document_srl" required="true" />
<node target="nick_name" required="true" />
<node target="nick_name" required="true" maxlength="20"/>
<node target="password" required="true" />
<node target="email_address" maxlength="250" />
<node target="homepage" maxlength="250"/>