mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-04-07 13:55:33 +08:00
Merge remote-tracking branch 'origin/hotfix/v5.1.5' into develop
This commit is contained in:
@ -211,7 +211,8 @@ namespace XmlUtils
|
||||
|
||||
if ((XmlNodeType_Element == eNodeType && nCurDepth == nDepth + 1)
|
||||
|| ((XmlNodeType_Text == eNodeType ||
|
||||
XmlNodeType_Whitespace == eNodeType) && nCurDepth == nDepth + 1))
|
||||
XmlNodeType_Whitespace == eNodeType ||
|
||||
XmlNodeType_SIGNIFICANT_WHITESPACE == eNodeType ) && nCurDepth == nDepth + 1))
|
||||
return true;
|
||||
else if (XmlNodeType_EndElement == eNodeType && nCurDepth == nDepth)
|
||||
return false;
|
||||
|
||||
Reference in New Issue
Block a user