summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorLynx Linden <lynx@lindenlab.com>2009-12-08 15:16:04 +0000
committerLynx Linden <lynx@lindenlab.com>2009-12-08 15:16:04 +0000
commit0c607a6b88eef34987fdbd79843b693548f4adec (patch)
tree97a79685fd5d852074bea81eefd194fd7ed666e4 /indra
parent98111a40ec907f994841d2b934246d8096317f60 (diff)
DEV-43679: Pass god mode through to search.
The state of gAgent.isGodlike() is now passed through to the Search web pages via a new g=[0|1] query parameter.
Diffstat (limited to 'indra')
-rw-r--r--indra/newview/llfloatersearch.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/indra/newview/llfloatersearch.cpp b/indra/newview/llfloatersearch.cpp
index 4d3724a758..2c618263ec 100644
--- a/indra/newview/llfloatersearch.cpp
+++ b/indra/newview/llfloatersearch.cpp
@@ -144,6 +144,10 @@ void LLFloaterSearch::search(const LLSD &key)
// add the current localization information
url += "&lang=" + LLUI::getLanguage();
+ // add the user's god status
+ std::string godlike = gAgent.isGodlike() ? "1" : "0";
+ url += "&g=" + godlike;
+
// and load the URL in the web view
mBrowser->navigateTo(url);
}