Changeset 20953 for branches/version-2_11-dev/data/class/SC_Customer.php
- Timestamp:
- 2011/05/21 19:58:30 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_11-dev/data/class/SC_Customer.php
r20764 r20953 51 51 } 52 52 53 // パスワードが合っていれば 顧客情報をcustomer_dataにセットしてtrueを返す53 // パスワードが合っていれば会員情報をcustomer_dataにセットしてtrueを返す 54 54 if ( SC_Utils_Ex::sfIsMatchHashPassword($pass, $data['password'], $data['salt']) ) { 55 55 $this->customer_data = $data; … … 129 129 /** 130 130 * 携帯端末IDを使用して会員を検索し、パスワードの照合を行う。 131 * パスワードが合っている場合は 顧客情報を取得する。131 * パスワードが合っている場合は会員情報を取得する。 132 132 * 133 133 * @param string $pass パスワード … … 150 150 @list($data) = $objQuery->getAll($sql, array($_SESSION['mobile']['phone_id'])); 151 151 152 // パスワードが合っている場合は、 顧客情報をcustomer_dataに格納してtrueを返す。152 // パスワードが合っている場合は、会員情報をcustomer_dataに格納してtrueを返す。 153 153 if ( SC_Utils_Ex::sfIsMatchHashPassword($pass, $data['password'], $data['salt']) ) { 154 154 $this->customer_data = $data;
Note: See TracChangeset
for help on using the changeset viewer.
