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

@ -1208,7 +1208,7 @@
<value xml:lang="vi"><![CDATA[Bấm vào đường Link này để hoàn tất việc đăng kí.]]></value>
</item>
<item name="msg_confirm_email_address_change">
<value xml:lang="ko"><![CDATA[아래 링크를 클릭하시면 이메일 주소가 변경됩니다.]]></value>
<value xml:lang="ko"><![CDATA[아래 링크를 클릭하시면 이메일 주소가 %s으로 변경됩니다.]]></value>
</item>
<item name="msg_auth_mail_sent">
<value xml:lang="ko"><![CDATA[%s 메일로 인증 정보를 담은 메일이 발송되었습니다. 메일을 확인하세요.]]></value>

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);

View file

@ -5,5 +5,5 @@
<li loop="$memberInfo=>$name,$value">{$name} : {$value}</li>
</ul>
<hr noshade="noshade" />
{$lang->msg_confirm_email_address_change}<br />
{sprintf($lang->msg_confirm_email_address_change, $newEmail)}<br />
<a href="{$auth_url}">{$auth_url}</a>