diff options
author | PayBas <contact@paybas.com> | 2014-04-06 16:43:25 +0200 |
---|---|---|
committer | PayBas <contact@paybas.com> | 2014-04-06 16:43:25 +0200 |
commit | 3384e87b6f1f6ba3532257585392a8b7e1034a18 (patch) | |
tree | e66adf357984328cef8bb38fd023cbfbd260076f /phpBB/viewtopic.php | |
parent | 0e88f0db4ad728ed071f42301ee7196c8bf1c2ab (diff) | |
download | forums-3384e87b6f1f6ba3532257585392a8b7e1034a18.tar forums-3384e87b6f1f6ba3532257585392a8b7e1034a18.tar.gz forums-3384e87b6f1f6ba3532257585392a8b7e1034a18.tar.bz2 forums-3384e87b6f1f6ba3532257585392a8b7e1034a18.tar.xz forums-3384e87b6f1f6ba3532257585392a8b7e1034a18.zip |
[ticket/12363] Mark winning (most votes) results bar
PHPBB3-12363
Diffstat (limited to 'phpBB/viewtopic.php')
-rw-r--r-- | phpBB/viewtopic.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/phpBB/viewtopic.php b/phpBB/viewtopic.php index 1a74ad3e38..422ca1d12f 100644 --- a/phpBB/viewtopic.php +++ b/phpBB/viewtopic.php @@ -864,6 +864,7 @@ if (!empty($topic_data['poll_start'])) $option_pct_txt = sprintf("%.1d%%", round($option_pct * 100)); $option_pct_rel = ($poll_most > 0) ? $poll_option['poll_option_total'] / $poll_most : 0; $option_pct_rel_txt = sprintf("%.1d%%", round($option_pct_rel * 100)); + $option_winner = ($poll_option['poll_option_total'] > 0 && $poll_option['poll_option_total'] == $poll_most) ? true : false; $template->assign_block_vars('poll_option', array( 'POLL_OPTION_ID' => $poll_option['poll_option_id'], @@ -874,6 +875,7 @@ if (!empty($topic_data['poll_start'])) 'POLL_OPTION_PCT' => round($option_pct * 100), 'POLL_OPTION_WIDTH' => round($option_pct * 250), 'POLL_OPTION_VOTED' => (in_array($poll_option['poll_option_id'], $cur_voted_id)) ? true : false, + 'POLL_OPTION_WINNER' => $option_winner, )); } |