diff options
author | Henry Sudhof <kellanved@phpbb.com> | 2009-07-02 08:50:57 +0000 |
---|---|---|
committer | Henry Sudhof <kellanved@phpbb.com> | 2009-07-02 08:50:57 +0000 |
commit | 89d87a21823494069bf7d34f450985e0e705abeb (patch) | |
tree | 04defc90d6e21129bdbb906fab3bdad284acd5b7 | |
parent | d8e166a8055a7780a77f6eb1d1684dc961d57c3d (diff) | |
download | forums-89d87a21823494069bf7d34f450985e0e705abeb.tar forums-89d87a21823494069bf7d34f450985e0e705abeb.tar.gz forums-89d87a21823494069bf7d34f450985e0e705abeb.tar.bz2 forums-89d87a21823494069bf7d34f450985e0e705abeb.tar.xz forums-89d87a21823494069bf7d34f450985e0e705abeb.zip |
#47725
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9712 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r-- | phpBB/viewtopic.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/phpBB/viewtopic.php b/phpBB/viewtopic.php index 90e033dab7..0ddf8603fc 100644 --- a/phpBB/viewtopic.php +++ b/phpBB/viewtopic.php @@ -28,6 +28,9 @@ $topic_id = request_var('t', 0); $post_id = request_var('p', 0); $voted_id = request_var('vote_id', array('' => 0)); +$voted_id = (sizeof($voted_id) > 1) ? array_unique($voted_id) : $voted_id; + + $start = request_var('start', 0); $view = request_var('view', ''); |