Fireboard avatar image missing

After login there is a welcome message next to the user avatar at the top.
If you get an empty image the path to the image is wrong. It happens in some templates.

 

 

 

 

Find this file:
yoursite/components/com_fireboard/template/yourtemplate/plugin/profilebox/profilebox.php

find this code:

$jr_avatar = '<img src="components/com_fireboard/avatars/' . $avatar . '" alt=" " />';

Replace it with this:

$jr_avatar = '<img src="images/fbfiles/avatars/' . $avatar . '" alt=" " />';