A small bug:
Find:
Code:
<if "condition=$vboptions[tpmonth]">
<td class='thead' width='$cwidth%' align='center'>$vbphrase[top_posters_col4]</td>
</if>
<if "condition=$vboptions[tpall]">
<td class='thead' width='$cwidth%' align='center'>$vbphrase[top_posters_col5]</td>
</if>
Replace:
Code:
<if condition="$vboptions[tpmonth]">
<td class='thead' width='$cwidth%' align='center'>$vbphrase[top_posters_col4]</td>
</if>
<if condition="$vboptions[tpall]">
<td class='thead' width='$cwidth%' align='center'>$vbphrase[top_posters_col5]</td>
</if>