summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcallum <none@none>2010-11-16 17:55:31 -0800
committercallum <none@none>2010-11-16 17:55:31 -0800
commit5b69eeca918ca15c9cc2827286eb477b334089a2 (patch)
tree17c4d29b8e0920f1be1ca5b363f63c0acec386aa
parent9ebbc46608edfc93fe8fdecc4af793e99a1f13d4 (diff)
SOCIAL-269 FIX Search floater in client should bypass the usual media MIME type detection
-rw-r--r--indra/newview/llfloatersearch.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llfloatersearch.cpp b/indra/newview/llfloatersearch.cpp
index 3ed4aec89a..2041fac8d8 100644
--- a/indra/newview/llfloatersearch.cpp
+++ b/indra/newview/llfloatersearch.cpp
@@ -200,5 +200,5 @@ void LLFloaterSearch::search(const LLSD &key)
url = LLWeb::expandURLSubstitutions(url, subs);
// and load the URL in the web view
- mBrowser->navigateTo(url);
+ mBrowser->navigateTo(url, "text/html");
}