Closed
Description
If $filename contains spaces (e.g. "Some cool file.doc"), then in Firefox it saves with only first part of name (in the case of example 'Some').
My found quick fix:
WAS:
'Content-Disposition: ' . $disposition .
'; filename=' . $filename .
"; filename*=UTF-8''" . rawurlencode($filename)
BECOME
'Content-Disposition: ' . $disposition .
'; filename=' . rawurlencode($filename) .
"; filename*=UTF-8''" . rawurlencode($filename)
Metadata
Metadata
Assignees
Labels
No labels