Commit ef1d608b8ab738a7853cd0d501aefd2eb3ef6937
1 parent
eb0ae558
Exists in
8928
and in
1 other branch
correcting typo in indexes
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
src/InputOutput/IHMImpl/Tools/IHMParamManagerClass.php
... | ... | @@ -548,7 +548,7 @@ class IHMParamManagerClass |
548 | 548 | |
549 | 549 | $dim1_is_range = (isset($paramData->{'dim1-sum-type'}) && ($paramData->{'dim1-sum-type'} > 0)); |
550 | 550 | $processType1 = !empty($paramData->{'dim1-process-type'}) ? $paramData->{'dim1-process-type'} : ''; |
551 | - $processType2 = !empty($paramData->{'dim2-process-type'}) ? $paramData->{'dim1-process-type'} : ''; | |
551 | + $processType2 = !empty($paramData->{'dim2-process-type'}) ? $paramData->{'dim2-process-type'} : ''; | |
552 | 552 | $dim1_index = ($dim1_is_range || !isset($paramData->{'dim1-index'}) || ($paramData->{'dim1-index'} == '')) ? '*' : $paramData->{'dim1-index'}; |
553 | 553 | if ($dim1_is_range) { |
554 | 554 | switch ($paramData->{'dim1-sum-type'}) { | ... | ... |