비밀번호 찾기 메일의 url오류 수정

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@6493 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2009-06-09 02:14:41 +00:00
parent ec53a41ee6
commit 346d17a021

View file

@ -966,7 +966,9 @@
$tpl_path = sprintf('%sskins/%s', $this->module_path, $member_config->skin);
if(!is_dir($tpl_path)) $tpl_path = sprintf('%sskins/%s', $this->module_path, 'default');
Context::set('find_url',substr(Context::getRequestUri(),0,-1).getUrl('','module','member','act','procMemberAuthAccount','member_srl',$member_info->member_srl, 'auth_key',$auth_args->auth_key));
$find_url = getUrl('','module','member','act','procMemberAuthAccount','member_srl',$member_info->member_srl, 'auth_key',$auth_args->auth_key);
if(!preg_match('/^http/i',$find_url)) $find_url = substr(Context::getRequestUri(),0,-1).$find_url;
Context::set('find_url',$find_url);
$oTemplate = &TemplateHandler::getInstance();