We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b598ddc commit 98b7fb5Copy full SHA for 98b7fb5
bundle/Controller/DownloadController.php
@@ -82,7 +82,7 @@ public function downloadCollectedEnhancedEzBinaryFileAction($infocollectionAttri
82
$filePath = $filePathNodes->item(0)->textContent;
83
$fileName = basename($filePath);
84
85
- $originalFilename = $originalFilenameNodes->length ? $originalFilenameNodes->item(0)->textContent : $fileName;
+ $originalFilename = html_entity_decode($originalFilenameNodes->length ? $originalFilenameNodes->item(0)->textContent : $fileName);
86
87
$binaryFile = $this->ioService->loadBinaryFile('collected' . \DIRECTORY_SEPARATOR . $fileName);
88
0 commit comments