Ignore:
Timestamp:
2012/02/06 11:27:03 (14 years ago)
Author:
Seasoft
Message:

#1613 (ソース整形・ソースコメントの改善)

  • Zend Framework PHP 標準コーディング規約への準拠を高めた
File:
1 edited

Legend:

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

    r21441 r21442  
    5252 
    5353        // パスワードが合っていれば会員情報をcustomer_dataにセットしてtrueを返す 
    54         if (SC_Utils_Ex::sfIsMatchHashPassword($pass, $data['password'], $data['salt']) ) { 
     54        if (SC_Utils_Ex::sfIsMatchHashPassword($pass, $data['password'], $data['salt'])) { 
    5555            $this->customer_data = $data; 
    5656            $this->startSession(); 
     
    150150 
    151151        // パスワードが合っている場合は、会員情報をcustomer_dataに格納してtrueを返す。 
    152         if (SC_Utils_Ex::sfIsMatchHashPassword($pass, $data['password'], $data['salt']) ) { 
     152        if (SC_Utils_Ex::sfIsMatchHashPassword($pass, $data['password'], $data['salt'])) { 
    153153            $this->customer_data = $data; 
    154154            $this->startSession(); 
Note: See TracChangeset for help on using the changeset viewer.