Changeset 15579


Ignore:
Timestamp:
2007/09/04 12:10:46 (17 years ago)
Author:
nanasess
Message:

未定義変数の修正

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/feature-module-update/data/class/SC_FormParam.php

    r15532 r15579  
    350350        foreach($this->keyname as $val) { 
    351351            if($val == $keyname) { 
    352                 if(!is_array($this->param[$cnt])) { 
     352                if(isset($this->param[$cnt]) && !is_array($this->param[$cnt])) { 
    353353                    $this->param[$cnt] = split("-", $this->param[$cnt]); 
    354354                } 
Note: See TracChangeset for help on using the changeset viewer.