Ignore:
Timestamp:
2008/09/02 16:17:59 (16 years ago)
Author:
Seasoft
Message:

r17375 に対応する初期データを追加
・SC_Helper_Mail::sfMakeSubject() でのオブジェクト流用(参照渡し)を解消。呼び出し元から変数を渡すことを想定していたのか不安がある。
・未使用パラメータの削除

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/comu-ver2/data/class/pages/entry/LC_Page_Entry.php

    r17152 r17590  
    186186                    // 仮会員が有効の場合 
    187187                    if(CUSTOMER_CONFIRM_MAIL == true) { 
    188                         $subject = $mailHelper->sfMakesubject($objQuery, $objMailText, $this, '会員登録のご確認'); 
     188                        $subject = $mailHelper->sfMakesubject('会員登録のご確認'); 
    189189                        $toCustomerMail = $objMailText->fetch("mail_templates/customer_mail.tpl"); 
    190190                    } else { 
    191                         $subject = $mailHelper->sfMakesubject($objQuery, $objMailText, $this, '会員登録のご完了'); 
     191                        $subject = $mailHelper->sfMakesubject('会員登録のご完了'); 
    192192                        $toCustomerMail = $objMailText->fetch("mail_templates/customer_regist_mail.tpl"); 
    193193                        // ログイン状態にする 
     
    494494                        // Moba8パラメーターを保持する場合はカラム追加 
    495495                        if (isset($_SESSION['a8'])) $this->etc_value = "&a8=". $_SESSION['a8']; 
    496                         $subject = $objHelperMail->sfMakeSubject($objQuery, $objMailText, $this, '会員登録のご確認'); 
     496                        $subject = $objHelperMail->sfMakeSubject('会員登録のご確認'); 
    497497                        $toCustomerMail = $objMailText->fetch("mail_templates/customer_mail.tpl"); 
    498498                    } else { 
    499                         $subject = $objHelperMail->sfMakesubject($objQuery, $objMailText, $this, '会員登録のご完了'); 
     499                        $subject = $objHelperMail->sfMakesubject('会員登録のご完了'); 
    500500                        $toCustomerMail = $objMailText->fetch("mail_templates/customer_regist_mail.tpl"); 
    501501                        // ログイン状態にする 
Note: See TracChangeset for help on using the changeset viewer.