diff options
author | Richard Nelson <richard@lindenlab.com> | 2011-09-12 18:00:52 -0700 |
---|---|---|
committer | Richard Nelson <richard@lindenlab.com> | 2011-09-12 18:00:52 -0700 |
commit | 860962d365ba49d063d2f934706a6e4832352b4b (patch) | |
tree | 6c5967007654cc0d20844d8c165ddd8a1cbbab42 | |
parent | 09394d3a9d72c701fe28c54d7c76d71ddf3ef765 (diff) |
EXP-1063 FIX Destination Guide link in side panel does not open to destination guide specific search window
fixed param->LLSD serialization to not introduce empty strings
-rw-r--r-- | indra/llui/llsdparam.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/indra/llui/llsdparam.cpp b/indra/llui/llsdparam.cpp index 9ad13054cb..7deedb18b8 100644 --- a/indra/llui/llsdparam.cpp +++ b/indra/llui/llsdparam.cpp @@ -159,6 +159,11 @@ LLSD* LLParamSDParser::getSDWriteNode(const parser_t::name_stack_t& name_stack) it != name_stack.end(); ++it) { + if (it->first.empty()) + { + continue; + } + bool new_array_entry = false; if (prev_it == mNameStack.end()) { |