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/llpanelprofile.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/llpanelprofile.cpp')
-rwxr-xr-x | indra/newview/llpanelprofile.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/indra/newview/llpanelprofile.cpp b/indra/newview/llpanelprofile.cpp index 4f13c0c022..cead6c24cd 100755 --- a/indra/newview/llpanelprofile.cpp +++ b/indra/newview/llpanelprofile.cpp @@ -31,6 +31,7 @@ #include "llavataractions.h" #include "llfloaterreg.h" #include "llcommandhandler.h" +#include "llnotificationsutil.h" #include "llpanelpicks.h" #include "lltabcontainer.h" #include "llviewercontrol.h" @@ -105,6 +106,12 @@ public: if (verb == "pay") { + if (!LLUI::sSettingGroups["config"]->getBOOL("EnableAvatarPay")) + { + LLNotificationsUtil::add("NoAvatarPay", LLSD(), LLSD(), std::string("SwitchToStandardSkinAndQuit")); + return true; + } + LLAvatarActions::pay(avatar_id); return true; } |