mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-02-01 17:49:58 +09:00
* 오픈아이디 등 사용자 ID가 허용범위를 넘는 경우 문제 git-svn-id: http://xe-core.googlecode.com/svn/sandbox@6519 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
4ff9002eb6
commit
395c34a23e
2 changed files with 39 additions and 3 deletions
32
modules/member/tpl/filter/update_member.xml
Normal file
32
modules/member/tpl/filter/update_member.xml
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
<filter name="insert" module="member" act="procMemberAdminInsert" extend_filter="member.getJoinFormList" confirm_msg_code="confirm_submit" >
|
||||
<form>
|
||||
<node target="user_name" required="true" minlength="2" maxlength="40" />
|
||||
<node target="nick_name" required="true" minlength="2" maxlength="40" />
|
||||
<node target="email_address" required="true" minlength="1" maxlength="200" filter="email"/>
|
||||
</form>
|
||||
<parameter>
|
||||
<param name="page" target="page" />
|
||||
<param name="member_srl" target="member_srl" />
|
||||
<param name="password" target="password" />
|
||||
<param name="user_name" target="user_name" />
|
||||
<param name="nick_name" target="nick_name" />
|
||||
<param name="homepage" target="homepage" />
|
||||
<param name="blog" target="blog" />
|
||||
<param name="birthday" target="birthday" />
|
||||
<param name="email_address" target="email_address" />
|
||||
<param name="allow_mailing" target="allow_mailing" />
|
||||
<param name="allow_message" target="allow_message" />
|
||||
<param name="denied" target="denied" />
|
||||
<param name="is_admin" target="is_admin" />
|
||||
<param name="description" target="description" />
|
||||
<param name="group_srl_list" target="group_srl_list" />
|
||||
<param name="signature" target="signature" />
|
||||
<param name="limit_date" target="limit_date" />
|
||||
</parameter>
|
||||
<response callback_func="completeInsert">
|
||||
<tag name="error" />
|
||||
<tag name="message" />
|
||||
<tag name="member_srl" />
|
||||
<tag name="page" />
|
||||
</response>
|
||||
</filter>
|
||||
|
|
@ -1,5 +1,9 @@
|
|||
<!--#include("header.html")-->
|
||||
<!--%import("filter/insert.xml")-->
|
||||
<!--@if($member_info->member_srl)-->
|
||||
<!--%import("filter/update_member.xml")-->
|
||||
<!--@else-->
|
||||
<!--%import("filter/insert.xml")-->
|
||||
<!--@endif-->
|
||||
<!--%import("css/member_admin.css")-->
|
||||
|
||||
<!--// datepicker javascript plugin load -->
|
||||
|
|
@ -157,7 +161,7 @@
|
|||
</div></th>
|
||||
<td class="wide">
|
||||
<!--// 일반 text -->
|
||||
<!--@if($val->column_type == 'text')-->
|
||||
<!--@if($val->column_type == 'text')-->
|
||||
<input type="text" name="{$val->column_name}" value="{htmlspecialchars($val->value)}" class="inputTypeText w400" />
|
||||
|
||||
<!--// 홈페이지 주소 -->
|
||||
|
|
@ -233,7 +237,7 @@
|
|||
<!--// 날짜 입력 -->
|
||||
<!--@elseif($val->column_type == 'date')-->
|
||||
<input type="hidden" name="{$val->column_name}" id="date_{$val->column_name}" value="{$val->value}" />
|
||||
<input type="text" class="inputDate" value="{zdate($val->value,"Y-m-d")}" />
|
||||
<input type="text" class="inputDate" value="{zdate($val->value,"Y-m-d")}" />
|
||||
|
||||
|
||||
<!--@end-->
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue