Changeset 23202


Ignore:
Timestamp:
2013/09/09 17:41:09 (11 years ago)
Author:
michael_nelson
Message:

#2116 仮登録メール再送で会員登録完了メールが送信されます mishap with character

Location:
branches/version-2_13_0/data/class
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_13_0/data/class/helper/SC_Helper_Mail.php

    r23201 r23202  
    318318     * @param  integer $customer_id 会員ID 
    319319     * @param  boolean $is_mobile   false(default):PCアドレスにメールを送る true:携帯アドレスにメールを送る 
     320     * @param $resend_flg true  仮登録メール再送 
    320321     * @return boolean true:成功 false:失敗 
     322     *   
    321323     */ 
    322324    public function sfSendRegistMail($secret_key, $customer_id = '', $is_mobile = false, $resend_flg = false) 
     
    344346 
    345347        $objHelperMail  = new SC_Helper_Mail_Ex(); 
    346  
    347348        // 仮会員が有効の場合     
    348         if (CUSTOMER_CONFIRM_MAIL == true and $arrCustomerData['status'] == 1 or $arrCustomerData['status'] == 1 and $resend_flg = true) { 
     349        if (CUSTOMER_CONFIRM_MAIL == true and $arrCustomerData['status'] == 1 or $arrCustomerData['status'] == 1 and $resend_flg == true) { 
    349350            $subject        = $objHelperMail->sfMakeSubject('会員登録のご確認', $objMailText); 
    350351            $toCustomerMail = $objMailText->fetch('mail_templates/customer_mail.tpl'); 
  • branches/version-2_13_0/data/class/pages/admin/customer/LC_Page_Admin_Customer.php

    r23201 r23202  
    192192        $objHelperMail = new SC_Helper_Mail_Ex(); 
    193193        $objHelperMail->setPage($this); 
    194         $objHelperMail->sfSendRegistMail($arrData['secret_key'], $customer_id, $resend_flg); 
     194        $objHelperMail->sfSendRegistMail($arrData['secret_key'], $customer_id, null, $resend_flg); 
    195195        return true; 
    196196    } 
Note: See TracChangeset for help on using the changeset viewer.