Browse Source

-Fix for parsing XML header

Juan Linietsky 11 years ago
parent
commit
6c27ac58b8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      core/io/resource_format_xml.cpp

+ 1 - 1
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()) {