Commit ddaf5ac21fc043628be7951e066323768b7ea0af
1 parent
42df730e
Exists in
master
and in
54 other branches
Fix WS plot request
Showing
1 changed file
with
1 additions
and
3 deletions
Show diff stats
src/InputOutput/WSImpl/Params/PlotImpl/WSInputOutputParamsPlotClass.php
... | ... | @@ -29,8 +29,6 @@ class WSInputOutputParamsPlotClass extends IHMInputOutputParamsAbstractClass |
29 | 29 | protected function unmarshallRequest($input) |
30 | 30 | { |
31 | 31 | //Request |
32 | - $requestIndexInParamData = 0; | |
33 | - | |
34 | 32 | $postProcessCmd = ""; |
35 | 33 | |
36 | 34 | $requestNode = $this->paramsData->addRequestNode(); |
... | ... | @@ -38,7 +36,7 @@ class WSInputOutputParamsPlotClass extends IHMInputOutputParamsAbstractClass |
38 | 36 | $paramsNode = $requestNode->getParamsNode(); |
39 | 37 | |
40 | 38 | //unmarshall time definition |
41 | - $this->unmarshallTimeDefinition($input, $tabRequestIndex-1, $requestIndexInParamData); | |
39 | + $this->unmarshallTimeDefinition($input, 0); | |
42 | 40 | |
43 | 41 | $plotOutputNode = $outputsNode->addNewOutput(RequestOutputTypeEnum::PLOT); |
44 | 42 | $plotOutputNode->setWriteContextFile("false"); |
... | ... |