首页 > CMS > Discuz > 正文

discuz x3.2附件下载名称增加网站名代码

2024-09-11 09:05:19
字体:
来源:转载
供稿:网友
打开source/module/forum/forum_attachment.php
找到:
$thread && $attachexists = TRUE;
复制代码
在后面增加
$attach['filename'] = $_G['setting']['bbname'].'-'.$attach['filename'];
复制代码
找到:
$attachexists = TRUE;
复制代码
在后面增加:
$attach['filename'] = $_G['setting']['bbname'].'-'.$attach['filename'];
复制代码
打开source/function/function_attachment.php
找到:
$attachexists = TRUE;
复制代码
在后面增加:
$attach['filename'] = $_G['setting']['bbname'].'-'.$attach['filename'];
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表