private function _getVoteInfo($tid)
 {
     $vote = array();
     $voteInfo = ForumUtils::getTopicVoteInfo($tid);
     $vote['deadline'] = $voteInfo['expiration'];
     // $vote['is_visible'] = $voteInfo['visiblepoll'] ? 1 : 0;
     // 投票后暂时永远结果可见xushaowei,老大让改的,
     $vote['is_visible'] = 1;
     $vote['voters'] = (int) $voteInfo['voterscount'];
     $vote['type'] = (int) $voteInfo['maxchoices'];
     $vote['poll_status'] = $voteInfo['status'];
     $vote['poll_id'] = array(0);
     foreach ($voteInfo['options'] as $option) {
         $voteItem['name'] = $option['polloption'];
         $voteItem['poll_item_id'] = (int) $option['polloptionid'];
         $voteItem['total_num'] = (int) $option['votes'];
         $voteItem['percent'] = $option['percent'] . '%';
         $vote['poll_item_list'][] = $voteItem;
     }
     return $vote;
 }