summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorHugo Locurcio <hugo.locurcio@hugo.pro>2021-08-28 23:49:00 +0200
committerGitHub <noreply@github.com>2021-08-28 23:49:00 +0200
commit4d08a737fb868b4c2f47946aea7c9ec4ee97894d (patch)
tree7952648e7e0a6e8759958299921b4de146d7cf6a /core
parent921bc712934a721095061c3acf422c29737b336f (diff)
parent597d489a20d3755dae4b92ac7667e058d68b3d83 (diff)
Merge pull request #52180 from timothyqiu/config-file-prop
Quote and escape ConfigFile keys when necessary
Diffstat (limited to 'core')
-rw-r--r--core/io/config_file.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/io/config_file.cpp b/core/io/config_file.cpp
index 55793aa5a4..49fa73dab2 100644
--- a/core/io/config_file.cpp
+++ b/core/io/config_file.cpp
@@ -188,7 +188,7 @@ Error ConfigFile::_internal_save(FileAccess *file) {
for (OrderedHashMap<String, Variant>::Element F = E.get().front(); F; F = F.next()) {
String 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");
}
}