Skip to content

Commit

Permalink
Merge pull request #229 from seasoftjapan/#228
Browse files Browse the repository at this point in the history
[fix] refs #228 dtb_csv.size_const_type 数値でも設定可能に
  • Loading branch information
ryo-endo committed Aug 30, 2018
2 parents 36b8527 + 378a522 commit 9f2f6a0
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 9f2f6a0

Please sign in to comment.