Commit 50c6fa3aa8dc42f06d0911dc52416dfe4d313270

Authored by Benjamin Renard
1 parent 5b16143f

Fix bug with WebService and param. component

src/InputOutput/WSImpl/Params/DownloadImpl/WSInputOutputParamsDownloadClass.php
... ... @@ -145,7 +145,7 @@ class WSInputOutputParamsDownloadClass extends IHMInputOutputParamsAbstractClass
145 145 $postProcessCmd = "mv ".$resultFilePrefix.$firstParam."*[0-9]";
146 146  
147 147 $postProcessCmd .= $extension;
148   - $postProcessCmd .= " ".WSConfigClass::getWsResultDir().$resultFile.$extension;
  148 + $postProcessCmd .= " \"".WSConfigClass::getWsResultDir().$resultFile.$extension."\"";
149 149  
150 150 $this->paramsData->setPostCmd($postProcessCmd);
151 151  
... ...