there is a little mistake (html form) in the plugin for CB who deform the template of joomla
http://rsgallery2.net/nightly/misc/community_builder/community_builder._r380.zipwith this version (start line 86)
change this
$htmlText.="</a><br />";
}
$htmlText.="</div></div></div>";
return $htmlText;
}
}
?>
by this
$htmlText.="</a></div><br>";
}
$htmlText.="</div>";
return $htmlText;
}
}
?>
