Changeset 18553 for branches/version-2_4-dev
- Timestamp:
- 2010/02/05 18:19:36 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_4-dev/data/class/pages/regist/LC_Page_Regist.php
r18264 r18553 79 79 if ($this->arrErr) { 80 80 SC_Utils_Ex::sfDispSiteError(FREE_ERROR_MSG, "", true, $this->arrErr["id"]); 81 81 82 82 } else { 83 83 $registSecretKey = $this->lfRegistData($_GET); //本会員登録(フラグ変更) … … 186 186 $where = "secret_key = ? AND status = 1"; 187 187 188 $arrRet = $objQuery->select("point", "dtb_customer", $where, array($array["id"]));189 // 会員登録時の加算ポイント(購入時会員登録の場合は、ポイント加算)190 $arrRegist['point'] = $arrRet[0]['point'] + $this->arrInfo['welcome_point'];188 // 会員登録時の加算ポイント(購入時会員登録かつ仮会員登録用) 189 //$arrRet = $objQuery->select("point", "dtb_customer", $where, array($array["id"])); 190 //$arrRegist['point'] = $arrRet[0]['point'] + $this->arrInfo['welcome_point']; 191 191 192 192 $objQuery->update("dtb_customer", $arrRegist, $where, array($array["id"]));
Note: See TracChangeset
for help on using the changeset viewer.