Changeset 9052
- Timestamp:
- Nov 9, 2008, 2:30:02 AM (14 years ago)
- Location:
- OpenPNE/branches/stable-2.10.x/webapp/modules
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
OpenPNE/branches/stable-2.10.x/webapp/modules/admin/do/csv_member.php
r8664 r9052 46 46 header("Content-Type: application/octet-stream"); 47 47 header("Content-Disposition: attachment; filename=member.csv"); 48 header("Cache-Control: public"); 49 header("Pragma: public"); 48 50 echo $member_csv_data; 49 51 exit; -
OpenPNE/branches/stable-2.10.x/webapp/modules/admin/do/file_download.php
r4471 r9052 45 45 header('Content-Length: '. strlen($file['bin'])); 46 46 header('Content-Type: application/octet-stream'); 47 header('Cache-Control: public'); 48 header('Pragma: public'); 47 49 echo $file['bin']; 48 50 exit; -
OpenPNE/branches/stable-2.10.x/webapp/modules/pc/do/c_file_download.php
r8578 r9052 57 57 header('Content-Length: '. strlen($file['bin'])); 58 58 header('Content-Type: application/octet-stream'); 59 header("Cache-Control: public"); 60 header("Pragma: public"); 59 61 echo $file['bin']; 60 62 exit;
Note: See TracChangeset
for help on using the changeset viewer.