Fix DynamicXml eating - inside CData sections

This commit is contained in:
agrath
2012-01-17 14:27:22 -13:00
parent 686e0116d8
commit 980c2d4a7f

View File

@@ -626,7 +626,10 @@ namespace umbraco.MacroEngines
{
if (ic == (int)'<' && !IsInsideQuotes)
{
IsInsideElement = true;
if (tr.Peek() != (int)'!')
{
IsInsideElement = true;
}
}
if (ic == (int)'>' && !IsInsideQuotes)
{