You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-17 14:11:06 +00:00
-Fix for parsing XML header
This commit is contained in:
@@ -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()) {
|
||||
|
||||
|
||||
Reference in New Issue
Block a user