summaryrefslogtreecommitdiff
path: root/indra/newview/llagent.cpp
diff options
context:
space:
mode:
authorTodd Stinson <stinson@lindenlab.com>2012-05-17 15:38:17 -0700
committerTodd Stinson <stinson@lindenlab.com>2012-05-17 15:38:17 -0700
commitcf0a6a61bd44b4becfa81eb3e0c6b16bc42c4c44 (patch)
tree78dbff8f219bd3e4cc2ef98c9f050d5833e360cd /indra/newview/llagent.cpp
parentecdc5cf7647c0cbbb057dba2f4bdeaafc3f5a93f (diff)
EXP-1928: Minor tweak to ensure that the case of the copy for content type is lower-case.
Diffstat (limited to 'indra/newview/llagent.cpp')
-rwxr-xr-xindra/newview/llagent.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/indra/newview/llagent.cpp b/indra/newview/llagent.cpp
index 5d5e585563..b109749688 100755
--- a/indra/newview/llagent.cpp
+++ b/indra/newview/llagent.cpp
@@ -3637,8 +3637,10 @@ void LLAgent::handleTeleportFinished()
if (mIsMaturityRatingChangingDuringTeleport)
{
// notify user that the maturity preference has been changed
+ std::string maturityRating = LLViewerRegion::accessToString(mMaturityRatingChange);
+ LLStringUtil::toLower(maturityRating);
LLSD args;
- args["RATING"] = LLViewerRegion::accessToString(mMaturityRatingChange);
+ args["RATING"] = maturityRating;
LLNotificationsUtil::add("PreferredMaturityChanged", args);
mIsMaturityRatingChangingDuringTeleport = false;
}