Hi... thanks for this component!
I saw that when a user posts a message with homepage also and I want to display it... the next messages display homepage icon too even if they didn't set up it.
I solve in easygb.html.php with this part of code:
if($easygbConfig_show_homepage && (!empty($row->homepage))) {
$tmpl->setAttribute('show_homepage', 'visibility', 'visible');
$tmpl->addVar('show_homepage', 'HOMEPAGE', (substr($row->homepage, 0, 4) != 'http' ? 'http://' . $row->homepage : $row->homepage));
$tmpl->addVar('show_homepage', 'EASYGB_VISIT_WEBSITE', EASYGB_VISIT_WEBSITE);
}
else
$tmpl->setAttribute('show_homepage', 'visibility', 'hidden');
the "else" solve this problem...
Bye
valse
ps: I'm sorry for my english but I'm italian... I'll send you a italian pack language too
