Changeset 20081


Ignore:
Timestamp:
2011/02/04 11:24:58 (13 years ago)
Author:
kimoto
Message:

仮会員登録時のバグ修正 #979

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_5-dev/data/class/pages/entry/LC_Page_Entry.php

    r20075 r20081  
    141141            $this->arrErr = $this->lfErrorCheck(); 
    142142            if(empty($this->arrErr)) { 
    143                 $this->uniqid       = $this->lfRegistData(); 
     143                $uniqid             = $this->lfRegistData(); 
    144144 
    145145                $this->tpl_mainpage = 'entry/complete.tpl'; 
    146146                $this->tpl_title    = '会員登録(完了ページ)'; 
    147147 
    148                 $this->lfSendMail(); 
     148                $this->lfSendMail($uniqid); 
    149149 
    150150                // 完了ページに移動させる。 
    151                 SC_Response_Ex::sendRedirect('complete.php', array("ci" => $this->lfGetCustomerId($this->uniqid))); 
     151                SC_Response_Ex::sendRedirect('complete.php', array("ci" => $this->lfGetCustomerId($uniqid))); 
    152152            } 
    153153            break; 
     
    260260     * @return void 
    261261     */ 
    262     function lfSendMail(){ 
     262    function lfSendMail($uniqid){ 
    263263        // 完了メール送信 
    264264        $arrRet         = $this->objFormParam->getHashArray(); 
    265265        $this->name01   = $arrRet['name01']; 
    266266        $this->name02   = $arrRet['name02']; 
     267        $this->uniqid   = $uniqid; 
    267268        $objMailText    = new SC_SiteView(); 
    268269        $objMailText->assignobj($this); 
Note: See TracChangeset for help on using the changeset viewer.