Ignore:
Timestamp:
2011/05/21 19:58:30 (15 years ago)
Author:
Seasoft
Message:

#1289 (用語に揺らぎ「会員」)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_11-dev/data/class/SC_Customer.php

    r20764 r20953  
    5151        } 
    5252 
    53         // パスワードが合っていれば顧客情報をcustomer_dataにセットしてtrueを返す 
     53        // パスワードが合っていれば会員情報をcustomer_dataにセットしてtrueを返す 
    5454        if ( SC_Utils_Ex::sfIsMatchHashPassword($pass, $data['password'], $data['salt']) ) { 
    5555            $this->customer_data = $data; 
     
    129129    /** 
    130130     * 携帯端末IDを使用して会員を検索し、パスワードの照合を行う。 
    131      * パスワードが合っている場合は顧客情報を取得する。 
     131     * パスワードが合っている場合は会員情報を取得する。 
    132132     * 
    133133     * @param string $pass パスワード 
     
    150150        @list($data) = $objQuery->getAll($sql, array($_SESSION['mobile']['phone_id'])); 
    151151 
    152         // パスワードが合っている場合は、顧客情報をcustomer_dataに格納してtrueを返す。 
     152        // パスワードが合っている場合は、会員情報をcustomer_dataに格納してtrueを返す。 
    153153        if ( SC_Utils_Ex::sfIsMatchHashPassword($pass, $data['password'], $data['salt']) ) { 
    154154            $this->customer_data = $data; 
Note: See TracChangeset for help on using the changeset viewer.