summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--loolwsd.xml.in2
-rw-r--r--wsd/LOOLWSD.cpp4
2 files changed, 3 insertions, 3 deletions
diff --git a/loolwsd.xml.in b/loolwsd.xml.in
index 69ab6e934a..6705f37ce0 100644
--- a/loolwsd.xml.in
+++ b/loolwsd.xml.in
@@ -16,7 +16,7 @@
<per_document desc="Document-specific settings, including LO Core settings.">
<max_concurrency desc="The maximum number of threads to use while processing a document." type="uint" default="4">4</max_concurrency>
<document_signing_url desc="The endpoint URL of signing server, if empty the document signing is disabled" type="string" default="@VEREIGN_URL@">@VEREIGN_URL@</document_signing_url>
- <redlining_as_comments desc="If true show red-lines as comments" type="bool" default="true">true</redlining_as_comments>
+ <redlining_as_comments desc="If true show red-lines as comments" type="bool" default="false">false</redlining_as_comments>
<idle_timeout_secs desc="The maximum number of seconds before unloading an idle document. Defaults to 1 hour." type="uint" default="3600">3600</idle_timeout_secs>
<!-- Idle save and auto save are checked every 30 seconds -->
<!-- They are disabled when the value is zero or negative. -->
diff --git a/wsd/LOOLWSD.cpp b/wsd/LOOLWSD.cpp
index 6012202e3b..3527f87705 100644
--- a/wsd/LOOLWSD.cpp
+++ b/wsd/LOOLWSD.cpp
@@ -839,7 +839,7 @@ void LOOLWSD::initialize(Application& self)
{ "per_document.limit_stack_mem_kb", "8000" },
{ "per_document.limit_virt_mem_mb", "0" },
{ "per_document.max_concurrency", "4" },
- { "per_document.redlining_as_comments", "true" },
+ { "per_document.redlining_as_comments", "false" },
{ "per_view.idle_timeout_secs", "900" },
{ "per_view.out_of_focus_timeout_secs", "120" },
{ "security.capabilities", "true" },
@@ -1086,7 +1086,7 @@ void LOOLWSD::initialize(Application& self)
LOG_INF("MAX_CONCURRENCY set to " << maxConcurrency << ".");
#endif
- const auto redlining = getConfigValue<bool>(conf, "per_document.redlining_as_comments", true);
+ const auto redlining = getConfigValue<bool>(conf, "per_document.redlining_as_comments", false);
if (!redlining)
{
setenv("DISABLE_REDLINE", "1", 1);