Changeset 15899


Ignore:
Timestamp:
2007/09/22 00:40:56 (17 years ago)
Author:
nanasess
Message:

EXIST_CHECK で 0 が未入力とされてしまう不具合修正

File:
1 edited

Legend:

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

    r15871 r15899  
    919919        foreach ($value as $key) { 
    920920            if (is_string($key) || is_int($key)) { 
    921                 if (empty($this->arrParam[$key]))  $this->arrParam[$key] = ""; 
     921                if (!isset($this->arrParam[$key]))  $this->arrParam[$key] = ""; 
    922922            } 
    923923        } 
Note: See TracChangeset for help on using the changeset viewer.