diff options
Diffstat (limited to 'indra/llxml')
-rw-r--r-- | indra/llxml/llcontrol.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llxml/llcontrol.cpp b/indra/llxml/llcontrol.cpp index 00a6c08ba4..ead8634df4 100644 --- a/indra/llxml/llcontrol.cpp +++ b/indra/llxml/llcontrol.cpp @@ -649,7 +649,7 @@ LLSD LLControlGroup::asLLSD(bool diffs_only) iter != mNameTable.end(); iter++) { LLControlVariable *control = iter->second; - if (!control || (diffs_only && control->isDefault())) + if (!control || control->isType(TYPE_STRING) || (diffs_only && control->isDefault())) { continue; } |