aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/viewtopic.php
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2008-09-16 15:15:03 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2008-09-16 15:15:03 +0000
commit17ec98b834d38bce562cc2c0c7447e7f00280a22 (patch)
tree41a79c6f88df76a4f34c5a656a4e733c1d43a8c4 /phpBB/viewtopic.php
parentcc5d77e06d4daf4b5899717a9b8695a72e5927b4 (diff)
downloadforums-17ec98b834d38bce562cc2c0c7447e7f00280a22.tar
forums-17ec98b834d38bce562cc2c0c7447e7f00280a22.tar.gz
forums-17ec98b834d38bce562cc2c0c7447e7f00280a22.tar.bz2
forums-17ec98b834d38bce562cc2c0c7447e7f00280a22.tar.xz
forums-17ec98b834d38bce562cc2c0c7447e7f00280a22.zip
simplify $user->img()
git-svn-id: file:///svn/phpbb/trunk@8859 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/viewtopic.php')
-rw-r--r--phpBB/viewtopic.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/viewtopic.php b/phpBB/viewtopic.php
index b7cf6b85e5..40aff9fd85 100644
--- a/phpBB/viewtopic.php
+++ b/phpBB/viewtopic.php
@@ -828,7 +828,7 @@ if (!empty($topic_data['poll_start']))
'POLL_OPTION_RESULT' => $poll_option['poll_option_total'],
'POLL_OPTION_PERCENT' => $option_pct_txt,
'POLL_OPTION_PCT' => round($option_pct * 100),
- 'POLL_OPTION_IMG' => $user->img('poll_center', $option_pct_txt, round($option_pct * 250)),
+ 'POLL_OPTION_IMG' => $user->img('poll_center', $option_pct_txt, '', round($option_pct * 250)),
'POLL_OPTION_VOTED' => (in_array($poll_option['poll_option_id'], $cur_voted_id)) ? true : false)
);
}