The .xml file is ver 1.01. For some reason if I rename it to reflect that change it does not import properly (at least it doesn't on my test site

)
To apply the change to postbit and postbit_legacy templates that are addressed in ver 1.0.1 follow code changes below.
The posbit template fix:
ACP -> Styles & Templates -> Style Manager -> Spring -> Edit Templates -> Postbit Templates -> postbit
Find:
Code:
<a class="redcard" href="infraction.php?{vb:raw session.sessionurl}do=view&p={vb:raw post.postid}" rel="nofollow" title="{vb:rawphrase received_infraction}"><!-- <img src="{vb:stylevar imgdir_button}/red-card_sm.png" alt="{vb:rawphrase received_infraction}" /> --> </a>
Replace with:
Code:
<a class="redcard" href="infraction.php?{vb:raw session.sessionurl}do=view&p={vb:raw post.postid}" rel="nofollow" title="{vb:rawphrase received_infraction}">View Infraction</a>
Click the save button
The postbit_legacy template fix:
ACP -> Styles & Templates -> Style Manager -> Spring -> Edit Templates -> Postbit Templates -> postbit legacy
Find:
Code:
<a class="redcard" href="infraction.php?{vb:raw session.sessionurl}do=view&p={vb:raw post.postid}" rel="nofollow" title="{vb:rawphrase received_infraction}"><!-- <img src="{vb:stylevar imgdir_button}/red-card_sm.png" alt="{vb:rawphrase received_infraction}" /> --> </a>
Replace with:
Code:
<a class="redcard" href="infraction.php?{vb:raw session.sessionurl}do=view&p={vb:raw post.postid}" rel="nofollow" title="{vb:rawphrase received_infraction}">View Infraction</a>
Click the save button