The "Additional Meta Tags" from the SiteSettings page are not being added to HTML.
I added the following at line 114 to MetaContent.ascx.cs to fix the problem:
metaAdditional = new Literal();
if (currentPage.PageMetaAdditional.Length > 0)
{
metaAdditional.Text = currentPage.PageMetaAdditional;
}
else
{
metaAdditional.Text = siteSettings.MetaAdditional;
}
this.Controls.Add(metaAdditional);
Cheers,
Jesse