count_stc_by_relatedid($_G['tid'], $_G['setting']['creditstransextra'][1]); $thread['payers'] = $payment['payers']; $thread['netprice'] = !$_G['setting']['maxincperthread'] || ($_G['setting']['maxincperthread'] && $payment['income'] < $_G['setting']['maxincperthread']) ? floor($thread['price'] * (1 - $_G['setting']['creditstax'])) : 0; $thread['creditstax'] = sprintf('%1.2f', $_G['setting']['creditstax'] * 100).'%'; $thread['endtime'] = $_G['setting']['maxchargespan'] ? dgmdate($_G['forum_thread']['dateline'] + $_G['setting']['maxchargespan'] * 3600, 'u') : 0; $thread['price'] = $_G['forum_thread']['price']; $firstpost = C::t('forum_post')->fetch_threadpost_by_tid_invisible($_G['tid']); if($firstpost) { $member = getuserbyuid($firstpost['authorid']); $firstpost['groupid'] = $member['groupid']; } $pid = $firstpost['pid']; $freemessage = array(); $freemessage[$pid]['message'] = ''; if(preg_match_all("/\[free\](.+?)\[\/free\]/is", $firstpost['message'], $matches)) { foreach($matches[1] AS $match) { $freemessage[$pid]['message'] .= discuzcode($match, $firstpost['smileyoff'], $firstpost['bbcodeoff'], sprintf('%00b', $firstpost['htmlon']), $_G['forum']['allowsmilies'], $_G['forum']['allowbbcode'] ? -$firstpost['groupid'] : 0, $_G['forum']['allowimgcode'], $_G['forum']['allowhtml'], ($_G['forum']['jammer'] && $post['authorid'] != $_G['uid'] ? 1 : 0), 0, $post['authorid'], $_G['forum']['allowmediacode'], $pid).'
'; } } $attachtags = array(); if($_G['group']['allowgetattach'] || $_G['group']['allowgetimage']) { if(preg_match_all("/\[attach\](\d+)\[\/attach\]/i", $freemessage[$pid]['message'], $matchaids)) { $attachtags[$pid] = $matchaids[1]; } } if($attachtags) { require_once libfile('function/attachment'); parseattach($pid, $attachtags, $freemessage); } $thread['freemessage'] = $freemessage[$pid]['message']; unset($freemessage); ?>