Ignore:
Timestamp:
2009/05/15 16:30:40 (17 years ago)
Author:
kajiwara
Message:

2.4.0 正式版のコミット。コミット内容の詳細はこちら(http://svn.ec-cube.net/open_trac/query?status=closed&milestone=EC-CUBE2.4.0

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2/data/class/pages/admin/LC_Page_Admin_Login.php

    r17653 r18007  
    6464        if (!isset($_POST['password'])) $_POST['password'] = ""; 
    6565 
     66 
    6667        // 入力判定 
    67         if(strlen($_POST{'login_id'}) > 0 && strlen($_POST{'password'}) > 0) { 
     68        if(strlen($_POST{'login_id'}) > 0 && strlen($_POST{'password'}) >= PASSWORD_LEN1 && strlen($_POST{'password'}) <= PASSWORD_LEN2) { 
    6869            // 認証パスワードの判定 
    6970            $ret = $this->fnCheckPassword($conn); 
Note: See TracChangeset for help on using the changeset viewer.