Hilight current post on threaded view in Fireboard 1.0.4

In the 1.0.4 release, there is no indicator of which post you are currently viewing within a threaded tree of posts. Here's my hack to implement such an indicator.

Under your chosen template directory (ex: components/com_fireboard/templates/default), edit the thread.php file. Look for the TR with class="fb_threadview_row" and modify it like so:

<tr class="fb_threadview_row" <? if($leaf->id == (int)$id){ echo "style='background-color:yellow'"; } ?> >
You can use any background-color value you desire. I used "yellow" in the above example.