In a Section Details / Meta Description, if you enter text like:
This will "break" the site.
then the quotes are passed unaltered into the generated META tag. This means that the tag is corrupt and this affects the following line of code (which usually loads the Actinic stylesheet).
Problem is especially bad in IE where the stylesheet isn't loaded and the page therefore looks pants.
Fix:
Amend layout Standard Meta Tags and add encoding="actinic" to the two variables involved:
Bug seen in 9.0.5. Probably in all versions including V8.
This will "break" the site.
then the quotes are passed unaltered into the generated META tag. This means that the tag is corrupt and this affects the following line of code (which usually loads the Actinic stylesheet).
Problem is especially bad in IE where the stylesheet isn't loaded and the page therefore looks pants.
Fix:
Amend layout Standard Meta Tags and add encoding="actinic" to the two variables involved:
Code:
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <meta http-equiv="MSThemeCompatible" content="yes" /> <actinic:block if="%28%3cactinic%3avariable%20name%3d%22PageType%22%20%2f%3e%20%21%3d%20%22Section%22%20AND%20%3cactinic%3avariable%20name%3d%22PageType%22%20%2f%3e%20%21%3d%20%22Brochure%22%29%20OR%20%3cactinic%3avariable%20name%3d%22IsStoreFrontPage%22%20%2f%3e" > <actinic:block if="%3cactinic%3avariable%20name%3d%22GlbMetaKeywords%22%20%2f%3e%20%21%3d%20%22%22" > <meta name="keywords" content="<actinic:variable name="GlbMetaKeywords" />" /> </actinic:block> <actinic:block if="%3cactinic%3avariable%20name%3d%22GlbMetaDescription%22%20%2f%3e%20%21%3d%20%22%22" > <meta name="description" content="<actinic:variable encoding="actinic" name="GlbMetaDescription" />" /> </actinic:block> </actinic:block> <actinic:block if="%28%3cactinic%3avariable%20name%3d%22PageType%22%20%2f%3e%20%3d%3d%20%22Section%22%20OR%20%3cactinic%3avariable%20name%3d%22PageType%22%20%2f%3e%20%3d%3d%20%22Brochure%22%29%20AND%20%3cactinic%3avariable%20name%3d%22IsStoreFrontPage%22%20%2f%3e%20%3d%3d%20FALSE" > <actinic:block if="%3cactinic%3avariable%20name%3d%22MetaKeywords%22%20%2f%3e%20%21%3d%20%22%22" > <meta name="keywords" content="<actinic:variable name="MetaKeywords" />" /> </actinic:block> <actinic:block if="%3cactinic%3avariable%20name%3d%22MetaDescription%22%20%2f%3e%20%21%3d%20%22%22" > <meta name="description" content="<actinic:variable encoding="actinic" name="MetaDescription" />" /> </actinic:block> </actinic:block> <actinic:block if="%3cactinic%3avariable%20name%3d%22InTestMode%22%20%2f%3e"> <meta name="robots" content="noindex, nofollow"> </actinic:block>
Comment