Okay here are some minor bugs that I found, its not about how it works but how it looks. You will not see any different untill you use some VB skin
Original code on line 111 -> v5.3
PHP Code:
<![CDATA[<div style="padding:$stylevar[cellpadding]px 0px 0px 0px">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
The right one (IMO)
PHP Code:
<![CDATA[<div style="padding:5px 0px $stylevar[cellpadding]px 0px">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
Original code on line 131 v5.3
PHP Code:
<![CDATA[<div style="padding:$stylevar[cellpadding]px 0px 0px 0px">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="0" border="0" width="100%" align="center">
The right one (IMO)
PHP Code:
<![CDATA[<div style="padding:4px 0px 0px 0px">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
Hope it helps