Changeset 18454


Ignore:
Timestamp:
2010/01/01 00:43:35 (14 years ago)
Author:
Seasoft
Message:

不要と考えられる処理を削除。
参考:  http://xoops.ec-cube.net/modules/newbb/viewtopic.php?topic_id=4930&forum=11&post_id=24686#forumpost24686

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/comu-ver2/data/class/pages/regist/LC_Page_Regist.php

    r17590 r18454  
    3535 
    3636    // {{{ properties 
    37  
    38     /** ページ情報の配列 */ 
    39     var $arrInfo; 
    4037 
    4138    /** 設定情報 */ 
     
    6562        $objDb = new SC_Helper_DB_Ex(); 
    6663        $this->CONF = $objDb->sf_getBasisData(); 
    67         $this->arrInfo = $objSiteInfo->data; 
    6864 
    6965        // キャンペーンからの登録の場合の処理 
     
    124120        $objDb = new SC_Helper_DB_Ex(); 
    125121        $this->CONF = $objDb->sf_getBasisData(); 
    126         $arrInfo = $objSiteInfo->data; 
    127122 
    128123        //-- 本登録完了のためにメールから接続した場合 
     
    171166    function lfRegistData($array) { 
    172167        $objQuery = new SC_Query(); 
    173         $this->arrInfo; 
    174168 
    175169        do { 
     
    188182 
    189183        $arrRet = $objQuery->select("point", "dtb_customer", $where, array($array["id"])); 
    190         // 会員登録時の加算ポイント(購入時会員登録の場合は、ポイント加算) 
    191         $arrRegist['point'] = $arrRet[0]['point'] + $arrInfo['welcome_point']; 
    192184 
    193185        $objQuery->update("dtb_customer", $arrRegist, $where, array($array["id"])); 
Note: See TracChangeset for help on using the changeset viewer.