Quote and escape ConfigFile keys when necessary
(cherry picked from commit 597d489a20
)
This commit is contained in:
parent
389e67aa98
commit
e46d54ebec
1 changed files with 1 additions and 1 deletions
|
@ -184,7 +184,7 @@ Error ConfigFile::_internal_save(FileAccess *file) {
|
||||||
for (OrderedHashMap<String, Variant>::Element F = E.get().front(); F; F = F.next()) {
|
for (OrderedHashMap<String, Variant>::Element F = E.get().front(); F; F = F.next()) {
|
||||||
String vstr;
|
String vstr;
|
||||||
VariantWriter::write_to_string(F.get(), vstr);
|
VariantWriter::write_to_string(F.get(), vstr);
|
||||||
file->store_string(F.key() + "=" + vstr + "\n");
|
file->store_string(F.key().property_name_encode() + "=" + vstr + "\n");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue