社区图片有点问题,会展示别的不是图片的附件。
修改方法:
打开imagefocus.php
查找:
- $query = $db->query("SELECT attach.aid, attach.attachment, attach.remote, t.tid, t.fid, t.subject FROM {$tablepre}attachments attach LEFT JOIN {$tablepre}threads t ON t.tid=attach.tid WHERE attach.readperm='0' AND displayorder>='0' $cols ORDER BY $order DESC LIMIT ".$ducevars['imagesearchs']);
复制代码
修改为:
- $query = $db->query("SELECT attach.aid, attach.attachment, attach.remote, t.tid, t.fid, t.subject FROM {$tablepre}attachments attach LEFT JOIN {$tablepre}threads t ON t.tid=attach.tid WHERE attach.readperm='0' AND displayorder>='0' AND attach.filetype LIKE 'image/%' $cols ORDER BY $order DESC LIMIT ".$ducevars['imagesearchs']);
复制代码 |