[Svn-src-all:1193] [version-2_5-dev 20081] 仮会員登録時のバグ修正 #979
kimoto
admin @ mail.ec-cube.net
2011年 2月 4日 (金) 11:24:59 JST
Subversion committed to /home/svn/open 20081
http://svn.ec-cube.net/open_trac/changeset/20081
┌────────────────────────────┐
│更新者 : kimoto │
│更新日時: 2011-02-04 11:24:58 +0900 (金, 04 2月 2011)│
└────────────────────────────┘
Log:
--------------------------------------------------------
仮会員登録時のバグ修正 #979
Changed: [U:修正,A:追加,D:削除]
--------------------------------------------------------
U branches/version-2_5-dev/data/class/pages/entry/LC_Page_Entry.php
変更: branches/version-2_5-dev/data/class/pages/entry/LC_Page_Entry.php
===================================================================
--- branches/version-2_5-dev/data/class/pages/entry/LC_Page_Entry.php 2011-02-03 11:51:29 UTC (rev 20080)
+++ branches/version-2_5-dev/data/class/pages/entry/LC_Page_Entry.php 2011-02-04 02:24:58 UTC (rev 20081)
@@ -140,15 +140,15 @@
//-- 会員登録と完了画面
$this->arrErr = $this->lfErrorCheck();
if(empty($this->arrErr)) {
- $this->uniqid = $this->lfRegistData();
+ $uniqid = $this->lfRegistData();
$this->tpl_mainpage = 'entry/complete.tpl';
$this->tpl_title = '会員登録(完了ページ)';
- $this->lfSendMail();
+ $this->lfSendMail($uniqid);
// 完了ページに移動させる。
- SC_Response_Ex::sendRedirect('complete.php', array("ci" => $this->lfGetCustomerId($this->uniqid)));
+ SC_Response_Ex::sendRedirect('complete.php', array("ci" => $this->lfGetCustomerId($uniqid)));
}
break;
default:
@@ -259,11 +259,12 @@
* @access public
* @return void
*/
- function lfSendMail(){
+ function lfSendMail($uniqid){
// 完了メール送信
$arrRet = $this->objFormParam->getHashArray();
$this->name01 = $arrRet['name01'];
$this->name02 = $arrRet['name02'];
+ $this->uniqid = $uniqid;
$objMailText = new SC_SiteView();
$objMailText->assignobj($this);
Svn-src-all メーリングリストの案内