diff options
Diffstat (limited to 'fxjs')
-rw-r--r-- | fxjs/cjx_node.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fxjs/cjx_node.cpp b/fxjs/cjx_node.cpp index dc32e205bf..afe4bfd3b7 100644 --- a/fxjs/cjx_node.cpp +++ b/fxjs/cjx_node.cpp @@ -3527,7 +3527,8 @@ bool CJX_Node::TryContent(WideString& wsContent, if (GetXFANode()->GetElementType() == XFA_Element::ExclGroup) { pNode = GetXFANode(); } else { - CXFA_Node* pValue = GetXFANode()->GetChild(0, XFA_Element::Value); + CXFA_Node* pValue = + GetXFANode()->GetChild(0, XFA_Element::Value, false); if (!pValue) { return false; } |