Update of /cvsroot/phpwiki/phpwiki/lib
In directory usw-pr-cvs1:/tmp/cvs-serv991/phpwiki/lib
Modified Files:
ziplib.php
Log Message:
sf #482938 Content-Disposition parameter
Index: ziplib.php
===================================================================
RCS file: /cvsroot/phpwiki/phpwiki/lib/ziplib.php,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -r1.10 -r1.11
*** ziplib.php 2001/12/11 18:21:38 1.10
--- ziplib.php 2001/12/12 05:12:46 1.11
***************
*** 239,243 ****
$zipname = addslashes($zipname);
header("Content-Type: application/zip; name=\"$zipname\"");
! header("Content-Disposition: save; filename=\"$zipname\"");
}
--- 239,243 ----
$zipname = addslashes($zipname);
header("Content-Type: application/zip; name=\"$zipname\"");
! header("Content-Disposition: attachment; filename=\"$zipname\"");
}
|