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

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

File:
1 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'); 
Note: See TracChangeset for help on using the changeset viewer.