git-svn-id: http://xe-core.googlecode.com/svn/trunk@9 201d5d3c-b55e-5fd7-737f-ddc643e51545

This commit is contained in:
zero 2007-02-09 02:30:51 +00:00
parent 1188b0cf28
commit 73683a23e6
6 changed files with 56 additions and 1 deletions

View file

@ -79,3 +79,14 @@ function doUpdateDeniedID(user_id, mode, message) {
fo_obj.mode.value = mode;
procFormFilter(fo_obj, update_denied_id, procReload);
}
/* 가입폼 관련 */
function procInsertJoinForm(ret_obj, response_tags) {
var error = ret_obj['error'];
var message = ret_obj['message'];
var sid = ret_obj['sid'];
var act = ret_obj['act'];
alert(message);
url = "./admin.php?sid="+sid+"&act="+act;
location.href = url;
}