Changeset 2533
- Timestamp:
- 04/10/07 22:02:05 (3 years ago)
- Files:
-
- OpenPNE/branches/2_8/public_html/download.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
OpenPNE/branches/2_8/public_html/download.php
r2510 r2533 39 39 $file = db_file_c_file4filename($_GET['filename']); 40 40 $original_filename = preg_replace("/\r|\n/", '', $file['original_filename']); 41 header('Content-Disposition: attachment ; filename="' . $original_filename. '"');41 header('Content-Disposition: attachment ; filename="' . mb_convert_encoding($original_filename, 'SJIS', 'UTF-8') . '"'); 42 42 header('Content-Length: '. strlen($file['bin'])); 43 43 header('Content-Type: application/octet-stream');