diff options
author | Richard Linden <none@none> | 2011-02-28 22:06:21 -0800 |
---|---|---|
committer | Richard Linden <none@none> | 2011-02-28 22:06:21 -0800 |
commit | e02b83c350d9b642baa610829098539f18efa651 (patch) | |
tree | 40ac29e9b318ac6347c8378ca1bd58491708bcaf /indra/newview/llgroupactions.cpp | |
parent | b68f02fa5433eb5d3dff6edc8941e9fb527678e7 (diff) |
SOCIAL-608 WIP Classified link is available in Basic mode
Diffstat (limited to 'indra/newview/llgroupactions.cpp')
-rw-r--r-- | indra/newview/llgroupactions.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/indra/newview/llgroupactions.cpp b/indra/newview/llgroupactions.cpp index 5393678a6b..7b7780cba8 100644 --- a/indra/newview/llgroupactions.cpp +++ b/indra/newview/llgroupactions.cpp @@ -53,6 +53,12 @@ public: bool handle(const LLSD& tokens, const LLSD& query_map, LLMediaCtrl* web) { + if (!LLUI::sSettingGroups["config"]->getBOOL("EnableGroupInfo")) + { + LLNotificationsUtil::add("NoGroupInfo"); + return false; + } + if (tokens.size() < 1) { return false; |