aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/viewtopic.php
diff options
context:
space:
mode:
authorPayBas <contact@paybas.com>2014-04-01 14:59:35 +0200
committerPayBas <contact@paybas.com>2014-04-04 18:53:00 +0200
commite850e49a1b8495710c3fc0166735179a21a089bb (patch)
tree15e8b5fe1a3e609a3a6a9381a3ab3677f6b47d04 /phpBB/viewtopic.php
parentbf37342c86fe3f31cb8cd8c9da7749c221842ba8 (diff)
downloadforums-e850e49a1b8495710c3fc0166735179a21a089bb.tar
forums-e850e49a1b8495710c3fc0166735179a21a089bb.tar.gz
forums-e850e49a1b8495710c3fc0166735179a21a089bb.tar.bz2
forums-e850e49a1b8495710c3fc0166735179a21a089bb.tar.xz
forums-e850e49a1b8495710c3fc0166735179a21a089bb.zip
[ticket/12327] Coding style fixes
PHPBB3-12327
Diffstat (limited to 'phpBB/viewtopic.php')
-rw-r--r--phpBB/viewtopic.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/viewtopic.php b/phpBB/viewtopic.php
index b4fb759299..1b7db7958e 100644
--- a/phpBB/viewtopic.php
+++ b/phpBB/viewtopic.php
@@ -873,8 +873,8 @@ if (!empty($topic_data['poll_start']))
'POLL_OPTION_PERCENT_REL' => $option_pct_rel_txt,
'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_VOTED' => (in_array($poll_option['poll_option_id'], $cur_voted_id)) ? true : false,
+ ));
}
$poll_end = $topic_data['poll_length'] + $topic_data['poll_start'];
@@ -894,8 +894,8 @@ if (!empty($topic_data['poll_start']))
'S_IS_MULTI_CHOICE' => ($topic_data['poll_max_options'] > 1) ? true : false,
'S_POLL_ACTION' => $viewtopic_url,
- 'U_VIEW_RESULTS' => $viewtopic_url . '&amp;view=viewpoll')
- );
+ 'U_VIEW_RESULTS' => $viewtopic_url . '&amp;view=viewpoll',
+ ));
unset($poll_end, $poll_info, $voted_id);
}