diff options
| author | andreykproductengine <andreykproductengine@lindenlab.com> | 2017-11-22 16:58:17 +0200 | 
|---|---|---|
| committer | andreykproductengine <andreykproductengine@lindenlab.com> | 2017-11-22 16:58:17 +0200 | 
| commit | 6a025ddbbcbf5d37485192fc29dea6f275bc97b9 (patch) | |
| tree | 2aba1c5263134a6dc95d6a965e96a87d0d9afd91 | |
| parent | 629840e9a80d47d7224dbb6d557af07f194ca099 (diff) | |
MAINT-8027 Fixed URL-named group is displayed as a link in 'Group Inspector'
| -rw-r--r-- | indra/newview/llinspectgroup.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/indra/newview/llinspectgroup.cpp b/indra/newview/llinspectgroup.cpp index a4fce36783..8332443162 100644 --- a/indra/newview/llinspectgroup.cpp +++ b/indra/newview/llinspectgroup.cpp @@ -205,7 +205,7 @@ void LLInspectGroup::nameUpdatedCallback(  {  	if (id == mGroupID)  	{ -		getChild<LLUICtrl>("group_name")->setValue( LLSD(name) ); +		getChild<LLUICtrl>("group_name")->setValue(LLSD("<nolink>" + name + "</nolink>"));  	}  	// Otherwise possibly a request for an older inspector, ignore it | 
