summaryrefslogtreecommitdiff
path: root/indra/newview/llgroupactions.cpp
diff options
context:
space:
mode:
authorYuri Chebotarev <ychebotarev@productengine.com>2009-12-01 15:55:24 +0200
committerYuri Chebotarev <ychebotarev@productengine.com>2009-12-01 15:55:24 +0200
commitb509e655bdb7d2ef8a6cc0d87f765626b6d5783f (patch)
tree9ff40cd154e1fea8cbc42d9ea0c2b1479f5bdc4c /indra/newview/llgroupactions.cpp
parent9e0e0e4d54c73288a159beae3a654771a75f3714 (diff)
fix for normal EXT-2820 [BSI] Functionality loss: Can't open groups from Resident's profile
--HG-- branch : product-engine
Diffstat (limited to 'indra/newview/llgroupactions.cpp')
-rw-r--r--indra/newview/llgroupactions.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/indra/newview/llgroupactions.cpp b/indra/newview/llgroupactions.cpp
index 6fe8ed0e4d..99b58f2170 100644
--- a/indra/newview/llgroupactions.cpp
+++ b/indra/newview/llgroupactions.cpp
@@ -100,9 +100,9 @@ public:
}
if (tokens[1].asString() == "inspect")
{
- LLSD key;
- key["group_id"] = group_id;
- LLFloaterReg::showInstance("inspect_group", key);
+ if (group_id.isNull())
+ return true;
+ LLGroupActions::show(group_id);
return true;
}
return false;