Changeset 16108


Ignore:
Timestamp:
2007/09/27 21:31:13 (17 years ago)
Author:
nanasess
Message:

未定義変数の修正

File:
1 edited

Legend:

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

    r16091 r16108  
    257257        foreach($this->keyname as $val) { 
    258258            if($keyname == "" || $keyname == $val) { 
    259                 $arrRet[$val] = $this->param[$cnt]; 
     259                $arrRet[$val] = isset($this->param[$cnt]) ? $this->param[$cnt] : ""; 
    260260                $cnt++; 
    261261            } 
     
    269269        foreach ($this->keyname as $val) { 
    270270            if ($this->input_db[$cnt]) { 
    271                 $arrRet[$val] = $this->param[$cnt]; 
     271                $arrRet[$val] = isset($this->param[$cnt]) ? $this->param[$cnt] : ""; 
    272272            } 
    273273            $cnt++; 
Note: See TracChangeset for help on using the changeset viewer.