Changeset 21517


Ignore:
Timestamp:
2012/02/15 21:44:35 (12 years ago)
Author:
Seasoft
Message:

#1647 (SC_FormParam#setParam 第1引数の要素の値が NULL の場合に処理されない)

File:
1 edited

Legend:

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

    r21515 r21517  
    8383        if (!$seq) { 
    8484            foreach ($this->keyname as $val) { 
    85                 if (isset($arrVal[$val])) { 
     85                if (array_key_exists($val, $arrVal)) { 
    8686                    $this->setValue($val, $arrVal[$val]); 
    8787                } 
Note: See TracChangeset for help on using the changeset viewer.