diff options
| author | Oz Linden <oz@lindenlab.com> | 2010-10-11 08:59:19 -0400 |
|---|---|---|
| committer | Oz Linden <oz@lindenlab.com> | 2010-10-11 08:59:19 -0400 |
| commit | e2e70577f90d9551f4afe637bfd486654d778e5e (patch) | |
| tree | 831de0c3fa62bc84d7e67f8c5041976efb60d84d /indra/newview/llnamebox.cpp | |
| parent | ecbc00351aed97cfe2f87267789732ff00c2333b (diff) | |
| parent | bb74487c859acccb8f88002630606419761136e4 (diff) | |
merged fix for STORM-222
Diffstat (limited to 'indra/newview/llnamebox.cpp')
| -rw-r--r-- | indra/newview/llnamebox.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/newview/llnamebox.cpp b/indra/newview/llnamebox.cpp index 74d4217899..c31da84f78 100644 --- a/indra/newview/llnamebox.cpp +++ b/indra/newview/llnamebox.cpp @@ -47,6 +47,7 @@ LLNameBox::LLNameBox(const Params& p) { mNameID = LLUUID::null; mLink = p.link; + mParseHTML = mLink; // STORM-215 mInitialValue = p.initial_value().asString(); LLNameBox::sInstances.insert(this); setText(LLStringUtil::null); @@ -119,7 +120,7 @@ void LLNameBox::setName(const std::string& name, BOOL is_group) std::string url; if (is_group) - url = "[secondlife:///app/group/" + LLURI::escape(name) + "/about " + name + "]"; + url = "[secondlife:///app/group/" + mNameID.asString() + "/about " + name + "]"; else url = "[secondlife:///app/agent/" + mNameID.asString() + "/about " + name + "]"; |
