|
给附件增加下载自动带前缀或后缀名找到文件./source/module/forum/forum_attachment.php
搜索:
- $thread && $attachexists = TRUE;
[color=rgb(51, 102, 153) !important]复制代码
在下面添加代码:
- $attach['filename'] = $_G['setting']['bbname'].'-'.$attach['filename'];
[color=rgb(51, 102, 153) !important]复制代码
然后在:
[color=rgb(51, 102, 153) !important]复制代码
在下面添加代码:
- $attach['filename'] = $_G['setting']['bbname'].'-'.$attach['filename'];
[color=rgb(51, 102, 153) !important]复制代码
保存文件,下载附件自动会带增加的前缀或后缀名。 |
|
|