From 270db495815cf1f7c1edc9d5015999b23e2a06e6 Mon Sep 17 00:00:00 2001 From: e107steved Date: Tue, 2 Nov 2010 21:58:19 +0000 Subject: [PATCH] Improved poll result display for near-unanimous votes --- e107_plugins/poll/poll_class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e107_plugins/poll/poll_class.php b/e107_plugins/poll/poll_class.php index f006fc8df..dd5b5703b 100644 --- a/e107_plugins/poll/poll_class.php +++ b/e107_plugins/poll/poll_class.php @@ -427,7 +427,7 @@ class poll foreach ($optionArray as $option) { $OPTION = $tp->toHTML($option, TRUE); - $BAR = ($percentage[$count] ? "
" : ""); + $BAR = ($percentage[$count] ? "
" : ""); $PERCENTAGE = $percentage[$count]."%"; $VOTES = POLLAN_31.": ".$voteArray[$count]; $text .= preg_replace("/\{(.*?)\}/e", '$\1', ($type == "forum" ? $POLL_FORUM_VOTED_LOOP : $POLL_VOTED_LOOP));