You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
One of our customers recently ran into the issue that the meta-description and opengraph-description fields aren't being sanitized.
On their page they added " and > in their descriptions as a form of textual markup.
This resulted in the {{ aardvark-seo:head }} tag finishing out on the start of the ", and the remainder of the description being pushed into the head until it ran into the >, which closed the head and threw the remainder into the body.
After a little digging in your source code it seemed as easy as adding the sanitize modifier to the meta_description and og_description echos. However it might be better to add the sanitize modifier to all echos within the head and body tags.
Thank you in advance!
The text was updated successfully, but these errors were encountered:
One of our customers recently ran into the issue that the meta-description and opengraph-description fields aren't being sanitized.
On their page they added
"
and>
in their descriptions as a form of textual markup.This resulted in the {{ aardvark-seo:head }} tag finishing out on the start of the
"
, and the remainder of the description being pushed into the head until it ran into the>
, which closed the head and threw the remainder into the body.After a little digging in your source code it seemed as easy as adding the
sanitize
modifier to themeta_description
andog_description
echos. However it might be better to add thesanitize
modifier to all echos within the head and body tags.Thank you in advance!
The text was updated successfully, but these errors were encountered: