Today I'm install this hack to vbulletin 3.0.6 and found this paragraph might need update
Quote:
pollresults_table TEMPLATE
==========================
FIND:
<td class="tfoot" colspan="4" align="center"><span class="smallfont">$vbphrase[voters]: <strong>$pollinfo[numbervotes]</strong>. $pollstatus</strong></td>
REPLACE WITH:
<if condition="$noshow == 0">
<td class="tfoot" colspan="4" align="center"><span class="smallfont">$vbphrase[voters]: <strong>$pollinfo[numbervotes]</strong>. $pollstatus</strong></td>
</if>
<if condition="$noshow == 1">
<td class="tfoot" colspan="4" align="center"><span class="smallfont"><strong>$vbphrase[hidden_poll_footer]<br>$pollstatus</strong></td>
</if>
|
should it be
Quote:
pollresults_table TEMPLATE
==========================
FIND:
<td class="tfoot" colspan="4" align="center"><span class="smallfont"><if condition="$show['multiple']">$vbphrase[multiple_choice_poll] </if>$vbphrase[voters]: <strong>$pollinfo[numbervotes]</strong>. $pollstatus</span></td>
REPLACE WITH:
<if condition="$noshow == 0">
<td class="tfoot" colspan="4" align="center"><span class="smallfont"><if condition="$show['multiple']">$vbphrase[multiple_choice_poll] </if>$vbphrase[voters]: <strong>$pollinfo[numbervotes]</strong>. $pollstatus</span></td>
</if>
<if condition="$noshow == 1">
<td class="tfoot" colspan="4" align="center"><span class="smallfont"><strong>$vbphrase[hidden_poll_footer]<br>$pollstatus</strong></td>
</if>
|