diff options
author | leyla <leyla@leyla.com> | 2011-03-14 11:23:15 -0700 |
---|---|---|
committer | leyla <leyla@leyla.com> | 2011-03-14 11:23:15 -0700 |
commit | bc2aca863f5d27f551e48a2de8f879360a3a96ab (patch) | |
tree | 65569e66fc6510a28cd8e242bef00261f9f89109 /indra/newview/llfloaterworldmap.cpp | |
parent | a1774c353e11e81c830523b1dd248119f8650ebf (diff) |
SOCIAL-687 Call, Map, Share, and Pay options available in web profile for users in minimal skin
Diffstat (limited to 'indra/newview/llfloaterworldmap.cpp')
-rwxr-xr-x | indra/newview/llfloaterworldmap.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/indra/newview/llfloaterworldmap.cpp b/indra/newview/llfloaterworldmap.cpp index e6d91a658d..03cf0332a9 100755 --- a/indra/newview/llfloaterworldmap.cpp +++ b/indra/newview/llfloaterworldmap.cpp @@ -148,6 +148,12 @@ public: bool handle(const LLSD& params, const LLSD& query_map, LLMediaCtrl* web) { + if (!LLUI::sSettingGroups["config"]->getBOOL("EnableWorldMap")) + { + LLNotificationsUtil::add("NoWorldMap", LLSD(), LLSD(), std::string("SwitchToStandardSkinAndQuit")); + return true; + } + //Make sure we have some parameters if (params.size() == 0) { |