有安裝的 修正一下
7/29 修正解販賣文章
viewthread.php
找
复制内容到剪贴板
代码:
$query2 = $db->query("SELECT fromuser,fromuseruid FROM {$tablepre}thanklog WHERE tid='$tid' and fromuseruid='$discuz_uid'");
$thanknopay=$th['thanknopay'];改成
复制内容到剪贴板
代码:
$thanknopay=$th['thanknopay'];
if($thanknopay==true){
$query2 = $db->query("SELECT fromuser,fromuseruid FROM {$tablepre}thanklog WHERE tid='$tid' and fromuseruid='$discuz_uid'");
}找
复制内容到剪贴板
代码:
}elseif($db->result($query2, 0) && $thanknopay==true) {
$db->query("UPDATE {$tablepre}threads SET price='-2' WHERE tid='$tid'");
showmessage("本主題使用感謝卡後重新進入可免費查看。","viewthread.php?tid=$tid");刪除
然後下面
找
复制内容到剪贴板
代码:
if(!$forum['ismoderator'] && $thread['authorid'] != $discuz_uid) {改為
复制内容到剪贴板
代码:
if(!$forum['ismoderator'] && $thread['authorid'] != $discuz_uid && !$db->result($query2, 0)) {