Changeset 20081
- Timestamp:
- 2011/02/04 11:24:58 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_5-dev/data/class/pages/entry/LC_Page_Entry.php
r20075 r20081 141 141 $this->arrErr = $this->lfErrorCheck(); 142 142 if(empty($this->arrErr)) { 143 $ this->uniqid= $this->lfRegistData();143 $uniqid = $this->lfRegistData(); 144 144 145 145 $this->tpl_mainpage = 'entry/complete.tpl'; 146 146 $this->tpl_title = '会員登録(完了ページ)'; 147 147 148 $this->lfSendMail( );148 $this->lfSendMail($uniqid); 149 149 150 150 // 完了ページに移動させる。 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))); 152 152 } 153 153 break; … … 260 260 * @return void 261 261 */ 262 function lfSendMail( ){262 function lfSendMail($uniqid){ 263 263 // 完了メール送信 264 264 $arrRet = $this->objFormParam->getHashArray(); 265 265 $this->name01 = $arrRet['name01']; 266 266 $this->name02 = $arrRet['name02']; 267 $this->uniqid = $uniqid; 267 268 $objMailText = new SC_SiteView(); 268 269 $objMailText->assignobj($this);
Note: See TracChangeset
for help on using the changeset viewer.