Quick word of advice... when installed, the "ban time remaining" and "lift ban" column headers for temp bans are over the wrong columns
To correct, edit the .xml file prior to installing and locate the code lines:
<td class='thead' align='center'>$vbphrase[ban_time_remaining]</td>
<td class='thead' align='center'>$vbphrase[lift_ban]</td>
and swap these around so they read...
<td class='thead' align='center'>$vbphrase[lift_ban]</td>
<td class='thead' align='center'>$vbphrase[ban_time_remaining]</td>
Done