mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-23 05:09:56 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@193 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
0a49ee5406
commit
0b38226b7a
14 changed files with 414 additions and 202 deletions
|
|
@ -71,6 +71,14 @@
|
|||
function procInsert() {
|
||||
// 일단 입력된 값들을 모두 받아서 db 입력항목과 그외 것으로 분리
|
||||
$args = Context::gets('member_srl','user_id','user_name','nick_name','email_address','password','allow_mailing','denied','is_admin','signature','profile_image','image_nick','image_mark','description','group_srl_list');
|
||||
$all_args = Context::getRequestVars();
|
||||
unset($all_args->page);
|
||||
unset($all_args->module);
|
||||
unset($all_args->act);
|
||||
|
||||
// 모든 request argument에서 필수 정보만 제외 한 후 추가 데이터로 입력
|
||||
$extra_vars = delObjectVars($all_args, $args);
|
||||
$args->extra_vars = serialize($extra_vars);
|
||||
|
||||
// member_srl이 넘어오면 원 회원이 있는지 확인
|
||||
if($args->member_srl) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue