Ignore:
Timestamp:
2007/09/06 12:22:27 (17 years ago)
Author:
nanasess
Message:

リファクタリングに伴う修正

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/feature-module-update/data/class/pages/entry/LC_Page_Entry.php

    r15532 r15627  
    1414 * @package Page 
    1515 * @author LOCKON CO.,LTD. 
    16  * @version $Id$ 
     16 * @version $Id:LC_Page_Entry.php 15532 2007-08-31 14:39:46Z nanasess $ 
    1717 */ 
    1818class LC_Page_Entry extends LC_Page { 
     
    169169                    $objMailText->assignobj($this); 
    170170 
     171                    $mailHelper = new SC_Helper_Mail_Ex(); 
     172                    $objQuery = new SC_Query(); 
    171173                    // 仮会員が有効の場合 
    172174                    if(CUSTOMER_CONFIRM_MAIL == true) { 
    173                         $subject = SC_Utils_Ex::sfMakesubject('会員登録のご確認'); 
     175                        $subject = $mailHelper->sfMakesubject($objQuery, $objMailText, $this, '会員登録のご確認'); 
    174176                        $toCustomerMail = $objMailText->fetch("mail_templates/customer_mail.tpl"); 
    175177                    } else { 
    176                         $subject = SC_Utils_Ex::sfMakesubject('会員登録のご完了'); 
     178                        $subject = $mailHelper->sfMakesubject($objQuery, $objMailText, $this, '会員登録のご完了'); 
    177179                        $toCustomerMail = $objMailText->fetch("mail_templates/customer_regist_mail.tpl"); 
    178180                        // ログイン状態にする 
Note: See TracChangeset for help on using the changeset viewer.