注册 | 登录 |
地方论坛门户及新闻和人才网址大全

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

时间:2021-07-21人气:-


打开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'];

上篇:discuz 门户页面支持导航顶部固定

下篇:discuz 发帖时间在viewthread.php模板中的...