Changeset 18251


Ignore:
Timestamp:
2009/08/03 18:33:07 (15 years ago)
Author:
Seasoft
Message:

rv r18248

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/comu-ver2/data/class/SC_CheckError.php

    r18248 r18251  
    3232 
    3333    // チェック対象の値が含まれる配列をセットする。 
    34     function SC_CheckError($array = $_POST) { 
    35         $this->arrParam = $array; 
     34    function SC_CheckError($array = "") { 
     35        if($array != "") { 
     36            $this->arrParam = $array; 
     37        } else { 
     38            $this->arrParam = $_POST; 
     39        } 
     40 
    3641    } 
    3742 
Note: See TracChangeset for help on using the changeset viewer.