Commit 50c6fa3aa8dc42f06d0911dc52416dfe4d313270
1 parent
5b16143f
Exists in
master
and in
50 other branches
Fix bug with WebService and param. component
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
src/InputOutput/WSImpl/Params/DownloadImpl/WSInputOutputParamsDownloadClass.php
@@ -145,7 +145,7 @@ class WSInputOutputParamsDownloadClass extends IHMInputOutputParamsAbstractClass | @@ -145,7 +145,7 @@ class WSInputOutputParamsDownloadClass extends IHMInputOutputParamsAbstractClass | ||
145 | $postProcessCmd = "mv ".$resultFilePrefix.$firstParam."*[0-9]"; | 145 | $postProcessCmd = "mv ".$resultFilePrefix.$firstParam."*[0-9]"; |
146 | 146 | ||
147 | $postProcessCmd .= $extension; | 147 | $postProcessCmd .= $extension; |
148 | - $postProcessCmd .= " ".WSConfigClass::getWsResultDir().$resultFile.$extension; | 148 | + $postProcessCmd .= " \"".WSConfigClass::getWsResultDir().$resultFile.$extension."\""; |
149 | 149 | ||
150 | $this->paramsData->setPostCmd($postProcessCmd); | 150 | $this->paramsData->setPostCmd($postProcessCmd); |
151 | 151 |