Changeset 18621


Ignore:
Timestamp:
2010/04/24 01:44:31 (14 years ago)
Author:
Seasoft
Message:

#705(SC_FormParam 1キーに複数回のチェック定義で誤動作) 応急対応。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/comu-ver2/data/class/SC_FormParam.php

    r18334 r18621  
    148148            if($val == $key) { 
    149149                $this->param[$cnt] = $param; 
    150                 break; 
     150                // 複数一致の場合もあるので break してはいけない。 
    151151            } 
    152152            $cnt++; 
     
    159159            if($val == $key) { 
    160160                $this->param[$cnt] = strtolower($this->param[$cnt]); 
    161                 break; 
     161                // 複数一致の場合もあるので break してはいけない。 
    162162            } 
    163163            $cnt++; 
Note: See TracChangeset for help on using the changeset viewer.