Changeset 16569


Ignore:
Timestamp:
2007/10/26 10:56:19 (17 years ago)
Author:
nanasess
Message:

未定義変数チェック修正

File:
1 edited

Legend:

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

    r16108 r16569  
    313313            } 
    314314 
    315             /* 
    316              * :XXX: isset() でチェックできない 
    317              */ 
    318             if (empty($this->param[$cnt])) $this->param[$cnt] = ""; 
     315            if (!isset($this->param[$cnt])) $this->param[$cnt] = ""; 
    319316 
    320317            if($this->default[$cnt] != "" && $this->param[$cnt] == "") { 
Note: See TracChangeset for help on using the changeset viewer.