I had the same problem than trandg. I worked this out by changing the line above the ones piratefrog made us change.
In fb-layout.php, change :
| Code: |
$header .= $fbIcons['home'] ? '<img src="' . JB_URLICONSPATH . '' . $fbIcons['home'] . '" border="0" alt="' . _FB_CATEGORIES . '" title="' . _FB_CATEGORIES . '" />' : _FB_CATEGORIES;
|
by :
| Code: |
$header .= $fbIcons['showlatest'] ? '<img src="' . JB_URLICONSPATH . '' . $fbIcons['showlatest'] . '" border="0" alt="' . _FB_ALL_DISCUSSIONS . '" title="' . _FB_ALL_DISCUSSIONS . '" />' : _FB_ALL_DISCUSSIONS;
|
That's working for me.