summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorangela <angela@lindenlab.com>2009-11-03 11:06:59 +0800
committerangela <angela@lindenlab.com>2009-11-03 11:06:59 +0800
commit399e922d33ae36d415431a512020771e058454cd (patch)
treea1e9651a4f625d799a70c62f51c2b9dd680dbb5a /indra
parente12d1371cc044560fb892d222acc253f7a015f0c (diff)
parentd8b3e7a021b97bf3cb4494c4d9228ed0a3c16738 (diff)
merge + EXT-1926 I18N: the folder name Contents in Build tools > Contents wont honor its translation + EXT-648 Cannot edit an object you are sitting on
Diffstat (limited to 'indra')
-rw-r--r--indra/llui/lliconctrl.cpp3
-rw-r--r--indra/newview/llfloatersearch.cpp9
2 files changed, 10 insertions, 2 deletions
diff --git a/indra/llui/lliconctrl.cpp b/indra/llui/lliconctrl.cpp
index b1bd2b89a9..82ffac9580 100644
--- a/indra/llui/lliconctrl.cpp
+++ b/indra/llui/lliconctrl.cpp
@@ -123,5 +123,4 @@ void LLIconCtrl::setIconImageDrawSize()
mImagep->getImage()->setKnownDrawSize(mDrawWidth, mDrawHeight) ;
}
}
-}
-
+} \ No newline at end of file
diff --git a/indra/newview/llfloatersearch.cpp b/indra/newview/llfloatersearch.cpp
index 4c83530f43..bd9798c18e 100644
--- a/indra/newview/llfloatersearch.cpp
+++ b/indra/newview/llfloatersearch.cpp
@@ -34,6 +34,7 @@
#include "llviewerprecompiledheaders.h"
#include "llfloatersearch.h"
#include "llmediactrl.h"
+#include "llagent.h"
LLFloaterSearch::LLFloaterSearch(const LLSD& key) :
@@ -117,6 +118,14 @@ void LLFloaterSearch::search(const LLSD &key)
std::string search_text = key.has("id") ? key["id"].asString() : "";
url += std::string("?q=") + search_text;
+ // append the maturity and teen capabilities for this agent
+ BOOL godlike = gAgent.isGodlike();
+ bool mature_enabled = gAgent.canAccessMature() || godlike;
+ bool adult_enabled = gAgent.canAccessAdult() || godlike;
+ std::string mature = (mature_enabled) ? "True" : "False";
+ std::string teen = (!adult_enabled) ? "True" : "False";
+ url += "&t=" + teen + "&m=" + mature;
+
// and load the URL in the web view
mBrowser->navigateTo(url);
}