summaryrefslogtreecommitdiff
path: root/indra/newview/llsettingsvo.cpp
diff options
context:
space:
mode:
authorandreykproductengine <andreykproductengine@lindenlab.com>2018-08-03 21:01:43 +0300
committerandreykproductengine <andreykproductengine@lindenlab.com>2018-08-03 21:01:43 +0300
commit51abc168c03f80d63c85d4bb48624f440b585390 (patch)
treeb22814b42377bf217aa03408d64d9bd93baa0372 /indra/newview/llsettingsvo.cpp
parent6a54e0948d651963399da82cfc5672125b9442e7 (diff)
MAINT-8902 fix encroaching 'legacy' issues
Diffstat (limited to 'indra/newview/llsettingsvo.cpp')
-rw-r--r--indra/newview/llsettingsvo.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/newview/llsettingsvo.cpp b/indra/newview/llsettingsvo.cpp
index e464f3f8ef..80797ae21c 100644
--- a/indra/newview/llsettingsvo.cpp
+++ b/indra/newview/llsettingsvo.cpp
@@ -1025,7 +1025,8 @@ LLSettingsDay::ptr_t LLSettingsVODay::buildFromLegacyMessage(const LLUUID &regio
if (dayp)
{
- dayp->initialize();
+ // true for validation - either validate here, or when cloning for floater.
+ dayp->initialize(true);
}
return dayp;
}