DiscuzX/upload/source/include/thread/thread_reward.php

33 lines
807 B
PHP

<?php
/**
* [Discuz!] (C)2001-2099 Comsenz Inc.
* This is NOT a freeware, use is subject to license terms
*
* $Id: thread_reward.php 24359 2011-09-14 07:54:47Z svn_project_zhangjie $
*/
if(!defined('IN_DISCUZ')) {
exit('Access Denied');
}
$bapid = 0;
$rewardprice = abs($_G['forum_thread']['price']);
$dateline = $_G['forum_thread']['dateline'] + 1;
$bestpost = array();
if($_G['forum_thread']['price'] < 0 && $page == 1) {
foreach($postlist as $key => $post) {
if($post['dbdateline'] == $dateline) {
$bapid = $key;
break;
}
}
}
if($bapid) {
$bestpost = C::t('forum_post')->fetch($posttableid, $bapid);
$bestpost['message'] = messagecutstr($bestpost['message'], 400);
$bestpost['avatar'] = avatar($bestpost['authorid'], 'small');
}
?>