--- htdocs.patch/modules/download.inc.php 2009-10-07 14:04:32.000000000 -0500 +++ htdocs/modules/download.inc.php 2009-10-16 10:54:51.000000000 -0500 @@ -37,9 +37,9 @@ # If there's a Secret Message from the view image script not to include download headers, don't. if ($_GET['nodownheaders'] == 1) { - header("Content-Disposition: filename=".$filename); + header("Content-Disposition: filename=\"".$filename . "\""); } else { - header("Content-Disposition: attachment; filename=".$filename); + header("Content-Disposition: attachment; filename=\"".$filename . "\""); } header("Content-length: ".$fileobj->fileinfo['filesize']); @@ -51,4 +51,4 @@ } else { bh_log($bhlang['error:file_not_exist'], "BH_NOPAGE"); require "modules/error.inc.php"; -} \ No newline at end of file +}