Ignore:
Timestamp:
2012/05/10 17:57:04 (14 years ago)
Author:
adachi
Message:

#1797 #1798 メールテンプレートでfilterが動作するように修正

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-dev/data/class/pages/admin/order/LC_Page_Admin_Order_Mail.php

    r21743 r21820  
    172172            foreach ($order_id_array as $order_id){ 
    173173                $objMail = new SC_Helper_Mail_Ex(); 
     174                $objMail->setPage($this); 
    174175                $objSendMail = $objMail->sfSendOrderMail($order_id, 
    175176                $objFormParam->getValue('template_id'), 
     
    194195            // 注文受付メール(送信なし) 
    195196            $objMail = new SC_Helper_Mail_Ex(); 
     197            $objMail->setPage($this); 
    196198            $objSendMail = $objMail->sfSendOrderMail( 
    197             $objFormParam->getValue('order_id'), 
    198             $objFormParam->getValue('template_id'), 
    199             $objFormParam->getValue('subject'), 
    200             $objFormParam->getValue('header'), 
    201             $objFormParam->getValue('footer'), false); 
     199                $objFormParam->getValue('order_id'), 
     200                $objFormParam->getValue('template_id'), 
     201                $objFormParam->getValue('subject'), 
     202                $objFormParam->getValue('header'), 
     203                $objFormParam->getValue('footer'), false); 
    202204 
    203205            $this->tpl_subject = $objFormParam->getValue('subject'); 
Note: See TracChangeset for help on using the changeset viewer.