Ignore:
Timestamp:
2010/02/05 18:19:36 (14 years ago)
Author:
kajiwara
Message:

#539分 不具合修正(仮会員メールからの登録時にポイントを追加しないよう修正)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_4-dev/data/class/pages/regist/LC_Page_Regist.php

    r18264 r18553  
    7979            if ($this->arrErr) { 
    8080                SC_Utils_Ex::sfDispSiteError(FREE_ERROR_MSG, "", true, $this->arrErr["id"]); 
    81              
     81 
    8282            } else { 
    8383                $registSecretKey = $this->lfRegistData($_GET);          //本会員登録(フラグ変更) 
     
    186186        $where = "secret_key = ? AND status = 1"; 
    187187 
    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']; 
    191191 
    192192        $objQuery->update("dtb_customer", $arrRegist, $where, array($array["id"])); 
Note: See TracChangeset for help on using the changeset viewer.