aboutsummaryrefslogtreecommitdiffstats
path: root/src/configreader.cpp
diff options
context:
space:
mode:
authorGravatar Daniel De Graaf2010-08-08 11:01:46 -0400
committerGravatar Daniel De Graaf2010-08-08 11:01:46 -0400
commitee431c12e0b274ac09a2f7fdaddd3a6a4d30c6c6 (patch)
tree42668a6520364ef1f10e82914afe797700ce346d /src/configreader.cpp
parentUntagle the #include tree a bit (diff)
Change config format to use XML entities by default
Diffstat (limited to 'src/configreader.cpp')
-rw-r--r--src/configreader.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/configreader.cpp b/src/configreader.cpp
index e4ddb4719..edebdbba3 100644
--- a/src/configreader.cpp
+++ b/src/configreader.cpp
@@ -538,7 +538,7 @@ void ServerConfig::Read()
ParseStack stack(this);
try
{
- valid = stack.ParseFile(ServerInstance->ConfigFileName, 0);
+ valid = stack.ParseFile(ServerInstance->ConfigFileName, FLAG_USE_XML);
}
catch (CoreException& err)
{