First commit
This commit is contained in:
33
source/include/thread/thread_reward.php
Normal file
33
source/include/thread/thread_reward.php
Normal file
@@ -0,0 +1,33 @@
|
||||
<?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_post($posttableid, $bapid);
|
||||
$bestpost['message'] = messagecutstr($bestpost['message'], 400);
|
||||
$bestpost['avatar'] = avatar($bestpost['authorid'], 'small');
|
||||
}
|
||||
|
||||
?>
|
Reference in New Issue
Block a user