diff options
author | Andrey Lihatskiy <andreylproductengine@lindenlab.com> | 2016-01-21 20:06:22 +0200 |
---|---|---|
committer | Andrey Lihatskiy <andreylproductengine@lindenlab.com> | 2016-01-21 20:06:22 +0200 |
commit | b10a3efad4ec31d107ad450af78c9b11ba705b12 (patch) | |
tree | 3d2771de638d6580463d17e20affe7d2c593faa8 /indra/newview/llviewermessage.cpp | |
parent | 75f7c916d1b4d5945a63f6f43b2321eb5240529e (diff) | |
parent | baf61b2f4be383d6a346ccecc236dcc314eeea2a (diff) |
Merged in andreyl_productengine/viewer-lion-marchcat (pull request #18)
MAINT-6050 Link the owner's name in the Open URL dialog to their profile
Diffstat (limited to 'indra/newview/llviewermessage.cpp')
-rwxr-xr-x | indra/newview/llviewermessage.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llviewermessage.cpp b/indra/newview/llviewermessage.cpp index f3d0369da6..e5abbf7683 100755 --- a/indra/newview/llviewermessage.cpp +++ b/indra/newview/llviewermessage.cpp @@ -7442,7 +7442,7 @@ void callback_load_url_name(const LLUUID& id, const std::string& full_name, bool args["URL"] = load_url_info["url"].asString(); args["MESSAGE"] = load_url_info["message"].asString();; args["OBJECTNAME"] = load_url_info["object_name"].asString(); - args["NAME"] = owner_name; + args["NAME_SLURL"] = LLSLURL(is_group ? "group" : "agent", id, "about").getSLURLString(); LLNotificationsUtil::add("LoadWebPage", args, load_url_info); } |