Skip to content

Commit

Permalink
[fix] refs #228 dtb_csv.size_const_type 数値でも設定可能に
Browse files Browse the repository at this point in the history
  • Loading branch information
seasoftjapan committed Aug 27, 2018
1 parent 212fb1f commit 378a522
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ public function lfInitParam(&$objFormParam, &$arrCSVFrame)
$objFormParam->addParam(
$item['disp_name'],
$col,
constant($item['size_const_type']),
defined($item['size_const_type']) ? constant($item['size_const_type']) : $item['size_const_type'],
$item['mb_convert_kana_option'],
$arrErrorCheckTypes,
$item['default'],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ public function lfInitParam(SC_FormParam &$objFormParam, &$arrCSVFrame)
$objFormParam->addParam(
$item['disp_name'],
$col,
constant($item['size_const_type']),
defined($item['size_const_type']) ? constant($item['size_const_type']) : $item['size_const_type'],
$item['mb_convert_kana_option'],
$arrErrorCheckTypes,
$item['default'],
Expand Down

0 comments on commit 378a522

Please sign in to comment.