diff options
author | andreykproductengine <andreykproductengine@lindenlab.com> | 2018-08-03 21:01:43 +0300 |
---|---|---|
committer | andreykproductengine <andreykproductengine@lindenlab.com> | 2018-08-03 21:01:43 +0300 |
commit | 51abc168c03f80d63c85d4bb48624f440b585390 (patch) | |
tree | b22814b42377bf217aa03408d64d9bd93baa0372 /indra/newview/llsettingsvo.cpp | |
parent | 6a54e0948d651963399da82cfc5672125b9442e7 (diff) |
MAINT-8902 fix encroaching 'legacy' issues
Diffstat (limited to 'indra/newview/llsettingsvo.cpp')
-rw-r--r-- | indra/newview/llsettingsvo.cpp | 3 |
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 ®io if (dayp) { - dayp->initialize(); + // true for validation - either validate here, or when cloning for floater. + dayp->initialize(true); } return dayp; } |