diff options
author | Juan Linietsky <reduzio@gmail.com> | 2014-02-23 09:43:28 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2014-02-23 09:43:28 -0300 |
commit | 6c27ac58b822763cff86d33e9d671391a6913bb8 (patch) | |
tree | 4454b9602b776db34005667adcd1c00a245d9270 | |
parent | c45daa56045fff7fa62dacc09f88a4106394426f (diff) |
-Fix for parsing XML header
-rw-r--r-- | core/io/resource_format_xml.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/io/resource_format_xml.cpp b/core/io/resource_format_xml.cpp index 20a42f25df..bd8e46556c 100644 --- a/core/io/resource_format_xml.cpp +++ b/core/io/resource_format_xml.cpp @@ -111,7 +111,7 @@ ResourceInteractiveLoaderXML::Tag* ResourceInteractiveLoaderXML::parse_tag(bool } break; - } else if ( ((!reading_value && (c<33)) || c=='=' || c=='"') && tag.name.length()) { + } else if ( ((!reading_value && (c<33)) || c=='=' || c=='"' || c=='\'') && tag.name.length()) { if (!reading_value && name.length()) { |