diff options
author | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2019-11-26 17:15:42 +0000 |
---|---|---|
committer | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2019-11-26 17:15:42 +0000 |
commit | d0abb6e1e091e89186df1d1fe6c8256f0bac497c (patch) | |
tree | b6d63e959e1420d8d14e1a5894eb2a7dee994398 /indra/newview/llpanelpeople.cpp | |
parent | f1a6e776b41f15ffc0ed4cf245136143bcd1a852 (diff) |
SL-12100, SL-12317 - benefits handling fixes
Diffstat (limited to 'indra/newview/llpanelpeople.cpp')
-rw-r--r-- | indra/newview/llpanelpeople.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/indra/newview/llpanelpeople.cpp b/indra/newview/llpanelpeople.cpp index 3126edc205..e5142f2b5f 100644 --- a/indra/newview/llpanelpeople.cpp +++ b/indra/newview/llpanelpeople.cpp @@ -617,8 +617,8 @@ BOOL LLPanelPeople::postBuild() if(LLAgentBenefitsMgr::current().getGroupMembershipLimit() < max_premium) { - getChild<LLTextBox>("groupcount")->setText(getString("GroupCountWithInfo")); - getChild<LLTextBox>("groupcount")->setURLClickedCallback(boost::bind(&LLPanelPeople::onGroupLimitInfo, this)); + getChild<LLTextBox>("groupcount")->setText(getString("GroupCountWithInfo")); + getChild<LLTextBox>("groupcount")->setURLClickedCallback(boost::bind(&LLPanelPeople::onGroupLimitInfo, this)); } mTabContainer = getChild<LLTabContainer>("tabs"); @@ -1089,10 +1089,10 @@ void LLPanelPeople::onGroupLimitInfo() args["MAX_BASIC"] = max_basic; args["MAX_PREMIUM"] = max_premium; - if (LLAgentBenefitsMgr::has("PremiumPlus")) + if (LLAgentBenefitsMgr::has("Premium Plus")) { - S32 max_premium_plus = LLAgentBenefitsMgr::get("PremiumPlus").getGroupMembershipLimit(); - args["MAX_PREMIUM"] = max_premium_plus; + S32 max_premium_plus = LLAgentBenefitsMgr::get("Premium Plus").getGroupMembershipLimit(); + args["MAX_PREMIUM_PLUS"] = max_premium_plus; LLNotificationsUtil::add("GroupLimitInfoPlus", args); } else |