Skip to content
Snippets Groups Projects
Commit 041a22af authored by Tinny Ng's avatar Tinny Ng
Browse files

Schema fix: Entities should be unparsed.

git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@173216 13f79535-47bb-0310-9956-ffa450edef68
parent caa1b31c
No related branches found
No related tags found
No related merge requests found
......@@ -57,6 +57,9 @@
/*
* $Id$
* $Log$
* Revision 1.7 2001/11/13 13:21:59 tng
* Schema fix: Entities should be unparsed.
*
* Revision 1.6 2001/10/09 20:50:27 peiyongz
* init(): take 1 arg
*
......@@ -139,7 +142,7 @@ void ENTITYDatatypeValidator::validate(const XMLCh* const content)
DTDEntityDecl* decl = fEntityDeclPool->getByKey(content);
if (!decl ||
(decl->isUnparsed()) )
(!decl->isUnparsed()) )
{
ThrowXML1(InvalidDatatypeValueException
, XMLExcepts::VALUE_ENTITY_Invalid
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment