Ignore:
Timestamp:
2010/03/11 10:35:11 (14 years ago)
Author:
kajiwara
Message:

正式版にナイトリービルド版をマージしてみるテスト

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tmp/version-2_5-test/data/class/pages/regist/LC_Page_Regist.php

    r18562 r18609  
    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        // キャンペーンからの登録の場合の処理 
     
    7975            if ($this->arrErr) { 
    8076                SC_Utils_Ex::sfDispSiteError(FREE_ERROR_MSG, "", true, $this->arrErr["id"]); 
    81  
     77             
    8278            } else { 
    8379                $registSecretKey = $this->lfRegistData($_GET);          //本会員登録(フラグ変更) 
     
    124120        $objDb = new SC_Helper_DB_Ex(); 
    125121        $this->CONF = $objDb->sf_getBasisData(); 
    126         $this->arrInfo = $objSiteInfo->data; 
    127122 
    128123        //-- 本登録完了のためにメールから接続した場合 
     
    186181        $where = "secret_key = ? AND status = 1"; 
    187182 
    188         // 会員登録時の加算ポイント(購入時会員登録かつ仮会員登録専用) 
    189         //$arrRet = $objQuery->select("point", "dtb_customer", $where, array($array["id"])); 
    190         //$arrRegist['point'] = $arrRet[0]['point'] + $this->arrInfo['welcome_point']; 
     183        $arrRet = $objQuery->select("point", "dtb_customer", $where, array($array["id"])); 
    191184 
    192185        $objQuery->update("dtb_customer", $arrRegist, $where, array($array["id"])); 
     
    275268        $objMailText->assign("name02", $data["name02"]); 
    276269        $toCustomerMail = $objMailText->fetch("mail_templates/customer_regist_mail.tpl"); 
    277         $subject = $objHelperMail->sfMakesubject($objQuery, $objMailText, $this, '会員登録が完了しました。'); 
     270        $subject = $objHelperMail->sfMakesubject('会員登録が完了しました。'); 
    278271        $objMail = new SC_SendMail(); 
    279272 
Note: See TracChangeset for help on using the changeset viewer.