Ignore:
Timestamp:
2011/10/20 19:54:20 (13 years ago)
Author:
shutta
Message:

refs #1493 (【2.11.1】パスワード確認時に、数字のみで0から始まるパスワードは0を読まない)
EQUAL_CHECK関数にて項目を比較する際に、!=ではなく、!===で厳密に比較するように修正。

File:
1 edited

Legend:

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

    r20912 r21290  
    190190        $this->createParam($value); 
    191191        // 文字数の取得 
    192         if( $this->arrParam[$value[2]] != $this->arrParam[$value[3]]) { 
     192        if( $this->arrParam[$value[2]] !== $this->arrParam[$value[3]]) { 
    193193            $this->arrErr[$value[2]] = "※ " . $value[0] . "と" . $value[1] . "が一致しません。<br />"; 
    194194        } 
Note: See TracChangeset for help on using the changeset viewer.