Quote:
Originally Posted by edytwinky
dartho any suggestion on why the word array comes up when looking at poll voter history?
|
Edit the pollresult template and replace the contents with this:
Code:
<div class="windowbg">
<span>
<vb:if condition="$option['uservote']">
{vb:raw option.question}
<vb:else />
{vb:raw option.question}
</vb:if>
<vb:if condition="$show['pollvoters']">
<div class="commalist">
<vb:each from="names" value="row">
<a class="commalist" href="{vb:link member, {vb:raw row}}">{vb:raw row.musername}</a>{vb:raw row.comma}
</vb:each>
</div>
</vb:if>
</span>
<span><strong>{vb:raw option.votes}</strong></span>
<span>{vb:raw option.percent}%</span>
</div>