蓝雨 发表于 2009-12-26 20:07:11

修正附件文件名带空格下载出错的错误PHPWind6.3-7.5

打开论坛根目录下的 job.php ,PW7.5找到:
header(\"Content-Disposition: $attachment; filename=\\\"{$attach}\\\"\");
修改为:
header(\"Content-Disposition: $attachment; filename=\\\"\".str_replace(\"\",\" \",$attach).\"\\\"\");
PW6.3 ~ 7.3.2 以下版本找到:
header(\"Content-Disposition: $attachment; filename=\\\"$name\\\"\");
替换为:
header(\"Content-Disposition: $attachment; filename=\\\"\".str_replace(\"\",\" \",$name).\"\\\"\");
PW6.3 以下版本找到:
header(Content-Disposition: .$attachment.; filename=.$name);
替换为:
header(Content-Disposition: .$attachment.; filename=.str_replace(\"\",\" \",$name));
页: [1]
查看完整版本: 修正附件文件名带空格下载出错的错误PHPWind6.3-7.5