- Timestamp:
- 2011/02/04 14:37:24 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_5-dev/data/class/pages/entry/LC_Page_Entry.php
r20088 r20089 149 149 150 150 // 完了ページに移動させる。 151 SC_Response_Ex::sendRedirect('complete.php', array("ci" => $this->lfGetCustomerId($uniqid)));151 SC_Response_Ex::sendRedirect('complete.php', array("ci" => SC_Helper_Customer_Ex::sfGetCustomerId($uniqid))); 152 152 } 153 153 break; … … 267 267 $this->name02 = $arrRet['name02']; 268 268 $this->uniqid = $uniqid; 269 $CONF = SC_Helper_DB_Ex::sfGetBasisData(); 270 $this->CONF = $CONF; 269 271 $objMailText = new SC_SiteView(); 270 272 $objMailText->assignobj($this); 271 273 272 274 $objHelperMail = new SC_Helper_Mail_Ex(); 273 $objCustomer = new SC_Customer();274 $CONF = SC_Helper_DB_Ex::sfGetBasisData();275 $this->CONF = $CONF;276 275 277 276 // 仮会員が有効の場合 … … 283 282 $toCustomerMail = $objMailText->fetch("mail_templates/customer_regist_mail.tpl"); 284 283 // ログイン状態にする 284 $objCustomer = new SC_Customer(); 285 285 $objCustomer->setLogin($arrRet["email"]); 286 286 } … … 367 367 } 368 368 } 369 370 371 /**372 * lfGetCustomerId373 *374 * @param mixed $uniqid375 * @access public376 * @return void377 */378 function lfGetCustomerId($uniqid) {379 $objQuery = new SC_Query();380 return $objQuery->get("customer_id", "dtb_customer", "secret_key = ?", array($uniqid));381 }382 369 }
Note: See TracChangeset
for help on using the changeset viewer.
