Ignore:
Timestamp:
2010/10/02 00:32:29 (14 years ago)
Author:
Seasoft
Message:

#827(バリデーションエラー時にメールアドレスの確認欄が勝手に入力される)を改修。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_5-dev/data/class/pages/mypage/LC_Page_Mypage_Change.php

    r18820 r18839  
    539539    } 
    540540 
    541     //顧客情報の取得 
     541    /** 
     542     * 顧客情報の取得 
     543     * 
     544     * @return array 顧客情報 
     545     */ 
    542546    function lfGetCustomerData(){ 
    543         //顧客情報取得 
     547        // 顧客情報DB取得 
    544548        $ret = $this->objQuery->select("*","dtb_customer","customer_id=?", array($this->objCustomer->getValue('customer_id'))); 
    545549        $arrForm = $ret[0]; 
    546550 
    547         //誕生日の年月日取得 
     551        // 確認項目に複製 
     552        $arrForm['email02'] = $arrForm['email']; 
     553        $arrForm['email_mobile02'] = $arrForm['email_mobile02']; 
     554 
     555        // 誕生日を年月日に分ける 
    548556        if (isset($arrForm['birth'])){ 
    549557            $birth = split(" ", $arrForm["birth"]); 
Note: See TracChangeset for help on using the changeset viewer.