资源交易网

 找回密码
 免费注册
查看: 53|回复: 0

discuz 手机触屏收费附件不显示的bug修复

[复制链接]
发表于 2026-2-15 12:55:01 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能,让你轻松玩转资源交易网。

您需要 登录 才可以下载或查看,没有帐号?免费注册

x
154.png

手机触屏版,收费附件,用户未登录时可以看到附件并有“登录后可见”的字样,但是等到登陆后却踪迹全无。有些站长反馈说在PC端购买过这个附件的,在手机端才能显示附件。
6 S1 S$ E9 b- }: X+ ~(www.m oqu8.c om)
( U" k0 Y2 Z8 N(w ww.m oqu8.c om)
, v: j, g& W0 C% D1 j+ |(w w w.m oqu 8.c om)
这样导致手机端的附件平白无故的消失了~ 应该算是一个比较大的功能上的bug,由于不影响安全,所以官方并未急于修复。
+ t5 Y" z4 t/ r6 o( x(w w w.m oq u8.c om)
修复起来倒是不很复杂,过程如下(如果懒得了解,可以直接拉到底部,下载懒人包,覆盖到根目录即可):

打开:/upload/source/language/lang_message.php


找到
  • 'attachment_buyall' => '本帖所有附件购买成功 ',




改为
  • 'attachment_mobile_buy' => '附件购买成功',




打开:/upload/source/module/forum/forum_misc.php



找到

  • if(count($aids) > 1) {
  •                         showmessage('attachment_buyall', 'forum.php?mod=redirect&goto=findpost&ptid='.$attach['tid'].'&pid='.$attach['pid']);
  •                 } else {
  •                         $_G['forum_attach_filename'] = $attach['filename'];
  •                         showmessage('attachment_buy', "forum.php?mod=attachment&aid=$aidencode", array('filename' => $_G['forum_attach_filename']), array('redirectmsg' => 1));
  •                 }




改为:

  • if(defined('IN_MOBILE')) {
  •                         showmessage('attachment_mobile_buy', 'forum.php?mod=redirect&goto=findpost&ptid='.$attach['tid'].'&pid='.$attach['pid']);
  •                 }else{
  •                         if(count($aids) > 1) {
  •                                 showmessage('attachment_buyall', 'forum.php?mod=redirect&goto=findpost&ptid='.$attach['tid'].'&pid='.$attach['pid']);
  •                         } else {
  •                                 $_G['forum_attach_filename'] = $attach['filename'];
  •                                 showmessage('attachment_buy', "forum.php?mod=attachment&aid=$aidencode", array('filename' => $_G['forum_attach_filename']), array('redirectmsg' => 1));
  •                         }
  •                 }




打开:/upload/template/default/touch/forum/discuzcode.htm
' N0 w9 ?# R- U. N(ww  w.m oqu  8.c om)


找到
  •   <!--{if !$attach['price'] || $attach['payed']}-->
  •                 <div id="attach_$attach[aid]" class="box attach mbn" >
  •                         <!--{if $_G['setting']['mobile']['mobilesimpletype'] == 0}-->
  •                         $attach[attachicon]
  •                         <!--{/if}-->
  •                         <!--{if !$attach['price'] || $attach['payed']}-->
  •                                 <a href="forum.php?mod=attachment{$is_archive}&aid=$aidencode" target="_blank">$attach[filename]</a>
  •                         <!--{else}-->
  •                                 <a href="forum.php?mod=misc&action=attachpay&aid=$attach[aid]&tid=$attach[tid]" target="_blank">$attach[filename]</a>
  •                         <!--{/if}-->
  •                         <em class="xg1">($attach[attachsize])</em>
  •                         <em class="xg1"><br />({lang downloads}: $attach[downloads], $attach[dateline] {lang upload})
  •                         </em>
  •                         <!--{if !$attach['attachimg'] && $_G['getattachcredits']}--><p>{lang attachcredits}: $_G[getattachcredits]</p><!--{/if}-->
  •                 </div>
  •                 <!--{/if}-->




改为

  • <div id="attach_$attach[aid]" class="box attach mbn" >
  • <!--{if $_G['setting']['mobile']['mobilesimpletype'] == 0}-->
  • $attach[attachicon]
  • <!--{/if}-->
  • <!--{if !$attach['price'] || $attach['payed']}-->
  • <a href="forum.php?mod=attachment{$is_archive}&aid=$aidencode" target="_blank">$attach[filename]</a>
  • <!--{else}-->
  • <a href="forum.php?mod=misc&action=attachpay&aid=$attach[aid]&tid=$attach[tid]" target="_blank">$attach[filename]</a>
  • <!--{/if}-->
  • <em class="xg1">($attach[attachsize])</em>
  • <em class="xg1"><br />({lang downloads}: $attach[downloads], $attach[dateline] {lang upload})
  • </em>
  • <!--{if !$attach['attachimg'] && $_G['getattachcredits']}-->{lang attachcredits}: $_G[getattachcredits]<!--{/if}-->
  • </div>







回复

使用道具 举报

您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

//-->
资源交易网:版权所有
资源交易网是互联网上传和各网友发布的资源
注:资源交易网如有信息侵犯了您的权益,请联系客服QQ:503579210及时删除。福尊网将乐意接受您的意见,并及时作出修改。
免责声明:资源交易网所有内容仅代表发表者个人观点,不代表资源交易网立场。资源交易网拒绝任何人以任何形式在本网发表与中华人民共和国法律相抵触的言论!
返回顶部