mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-18 18:59:56 +09:00
회원가입항목 추가시 저장이 안되던 문제 해결
git-svn-id: http://xe-core.googlecode.com/svn/trunk@2008 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
f9610e2976
commit
c73cc9ad76
5 changed files with 7 additions and 4 deletions
|
|
@ -1,6 +1,6 @@
|
|||
<filter name="modify_info" module="member" act="procMemberModifyInfo" extend_filter="member.getJoinFormList" confirm_msg_code="confirm_submit">
|
||||
<form>
|
||||
<node target="nick_name" required="true" minlength="2" maxlength="20" />
|
||||
<node target="nick_name" required="true" minlength="2" maxlength="20"/>
|
||||
<node target="email_address" required="true" minlength="1" maxlength="200" filter="email"/>
|
||||
</form>
|
||||
<parameter>
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<filter name="signup" module="member" act="procMemberInsert" extend_filter="member.getJoinFormList" confirm_msg_code="confirm_submit">
|
||||
<form>
|
||||
<node target="user_id" required="true" minlength="3" maxlength="20" filter="userid" />
|
||||
<node target="user_id" required="true" minlength="2" maxlength="20" filter="userid" />
|
||||
<node target="password1" required="true" minlength="6" maxlength="20" />
|
||||
<node target="password2" required="true" minlength="6" maxlength="20" equalto="password1" />
|
||||
<node target="user_name" required="true" minlength="2" maxlength="20" />
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<filter name="insert" module="member" act="procMemberAdminInsert" extend_filter="member.getJoinFormList" confirm_msg_code="confirm_submit" >
|
||||
<form>
|
||||
<node target="user_id" required="true" minlength="3" maxlength="20" />
|
||||
<node target="user_id" required="true" minlength="2" maxlength="20" />
|
||||
<node target="user_name" required="true" minlength="2" maxlength="20" />
|
||||
<node target="nick_name" required="true" minlength="2" maxlength="20" />
|
||||
<node target="email_address" required="true" minlength="1" maxlength="200" filter="email"/>
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@
|
|||
<tbody>
|
||||
<!--@foreach($form_list as $no => $val)-->
|
||||
<tr>
|
||||
<td class="tahoma">{htmlspecialchars($val->column_title)}</td>
|
||||
<td>{htmlspecialchars($val->column_title)}</td>
|
||||
<td>{$val->column_name}</td>
|
||||
<td>{$lang->column_type_list[$val->column_type]}</td>
|
||||
<td class="tahoma">{$val->is_active}</td>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue