wahid
-
5/7/2005 1:10:51 AM
BUG : Title tag not shown - How to fix
BUG: When using the function Functions.GetPageTitleTag(aliasPath) or Functions.GetPageTags(aliasPath) in <head> of templates, the tag <title> is returned empty. CAUSE: This is caused by a small bug in a line of the function Functions.GetPageTitleTag(aliasPath). FIX: if (dr != null && dr["MenuItemPageTitle"] == System.DBNull.Value) should read if (dr != null && dr["MenuItemPageTitle"] != System.DBNull.Value)
I hope this helps someone.
|