in
vBulletin 3.6.6
in template
USERCP
there was change:
3.6.5
Code:
<tr>
<td class="thead" colspan="2"> $vbphrase[thread]</td>
<td class="thead">$vbphrase[date]</td>
<if condition="$vboptions['showuserraters']">
<td class="thead" nowrap="nowrap">$vbphrase[posted_by]</td>
</if>
<td class="thead">$vbphrase[comment]</td>
</tr>
3.6.6
Code:
<tr>
<td class="thead"> </td>
<td class="thead">$vbphrase[thread]</td>
<td class="thead">$vbphrase[date]</td>
<if condition="$vboptions['showuserraters']">
<td class="thead" nowrap="nowrap">$vbphrase[posted_by]</td>
</if>
<td class="thead">$vbphrase[comment]</td>
</tr>
According to this change I propose to change in this modification to make tables headers look the same way:
From:
Code:
<tr>
<td class="thead" colspan="2"> $vbphrase[thread]</td>
<td class="thead">$vbphrase[date]</td>
<td class="thead" nowrap="nowrap">$vbphrase[given_to]</td>
<td class="thead">$vbphrase[comment]</td>
</tr>
To:
Code:
<tr>
<td class="thead"> </td>
<td class="thead">$vbphrase[thread]</td>
<td class="thead">$vbphrase[date]</td>
<td class="thead" nowrap="nowrap">$vbphrase[given_to]</td>
<td class="thead">$vbphrase[comment]</td>
</tr>