Hi Nick,
Since I've been using Aero 2 (from beta 1 to SP1), I always noticed the following bug:
An icon in the control panel footer is missing (the left one) and the Telligent logo seems to have some sort of very small text just at its bottom (probably the copyright text), which makes it look quite ugly.
It seems that the broken image is the EulaImage.
Did you experienced such display behaviour?
Thanks
Update: Found the bug, the footer div had the wrong style: in ControlPanelMaster.ascx, replace <div id="CommonFooter"> by <div id="ControlPanelFooter"> and at the beginning of the file, just before the DOCTYPE line, add the following:
<script runat="server">
void Page_Load()
{
if(!Telligent.Registration.CommunityServer.IsStandard)
{
EulaHyperlink.NavigateUrl = "http://communityserver.org/r.ashx?1";
EulaImage.ImageUrl = "~/utility/PoweredByCS_personal.GIF";
EulaImage.AlternateText = "Community Server (Personal Edition)";
}
else
{
EulaHyperlink.NavigateUrl = "http://communityserver.org/r.ashx?j";
EulaImage.ImageUrl = "~/utility/PoweredByCS_commercial.GIF";
EulaImage.AlternateText = "Community Server (Commercial Edition)";
}
}
</script>