Ignore:
Timestamp:
2009/12/07 15:08:06 (14 years ago)
Author:
kajiwara
Message:

EC-CUBE Ver2.4.2 分コミット。詳細はこちら( http://www.ec-cube.net/release/detail.php?release_id=207

File:
1 edited

Legend:

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

    r16930 r18432  
    124124        $objDb = new SC_Helper_DB_Ex(); 
    125125        $this->CONF = $objDb->sf_getBasisData(); 
    126         $arrInfo = $objSiteInfo->data; 
     126        $this->arrInfo = $objSiteInfo->data; 
    127127 
    128128        //-- 本登録完了のためにメールから接続した場合 
     
    171171    function lfRegistData($array) { 
    172172        $objQuery = new SC_Query(); 
    173         $this->arrInfo; 
    174173 
    175174        do { 
     
    189188        $arrRet = $objQuery->select("point", "dtb_customer", $where, array($array["id"])); 
    190189        // 会員登録時の加算ポイント(購入時会員登録の場合は、ポイント加算) 
    191         $arrRegist['point'] = $arrRet[0]['point'] + $arrInfo['welcome_point']; 
     190        $arrRegist['point'] = $arrRet[0]['point'] + $this->arrInfo['welcome_point']; 
    192191 
    193192        $objQuery->update("dtb_customer", $arrRegist, $where, array($array["id"])); 
Note: See TracChangeset for help on using the changeset viewer.