fixed modify email label

git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@9950 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
devjin 2011-12-14 06:51:48 +00:00
parent 3eaf1c6bad
commit ae7d2f57c5
3 changed files with 10 additions and 3 deletions

View file

@ -2046,7 +2046,14 @@
$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');
$memberInfo["$lang->email_address"] = $member_info->email_address;
global $lang;
$memberInfo[$lang->email_address] = $member_info->email_address;
$memberInfo[$lang->nick_name] = $member_info->nick_name;
Context::set('memberInfo', $memberInfo);
Context::set('newEmail', $newEmail);
$auth_url = getFullUrl('','module','member','act','procMemberAuthEmailAddress','member_srl',$member_info->member_srl, 'auth_key',$auth_args->auth_key);
Context::set('auth_url', $auth_url);